@bufbuild/protobuf 0.0.1 → 0.0.2-alpha.3
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/README.md +1 -21
- package/dist/cjs/binary-encoding.js +21 -8
- package/dist/cjs/binary-format.js +13 -0
- package/dist/cjs/descriptor-registry.js +13 -0
- package/dist/cjs/descriptor-set.js +13 -0
- package/dist/cjs/enum.js +13 -0
- package/dist/cjs/field-list.js +13 -0
- package/dist/cjs/field.js +13 -0
- package/dist/cjs/google/protobuf/any_pb.js +13 -33
- package/dist/cjs/google/protobuf/api_pb.js +10 -30
- package/dist/cjs/google/protobuf/compiler/plugin_pb.js +10 -45
- package/dist/cjs/google/protobuf/descriptor_pb.js +13 -39
- package/dist/cjs/google/protobuf/duration_pb.js +10 -30
- package/dist/cjs/google/protobuf/empty_pb.js +10 -30
- package/dist/cjs/google/protobuf/field_mask_pb.js +10 -30
- package/dist/cjs/google/protobuf/source_context_pb.js +10 -30
- package/dist/cjs/google/protobuf/struct_pb.js +10 -30
- package/dist/cjs/google/protobuf/timestamp_pb.js +10 -30
- package/dist/cjs/google/protobuf/type_pb.js +10 -30
- package/dist/cjs/google/protobuf/wrappers_pb.js +10 -39
- package/dist/cjs/{private/goog-varint.js → google/varint.js} +0 -0
- package/dist/cjs/index.js +21 -2
- package/dist/cjs/json-format.js +13 -0
- package/dist/cjs/message-type.js +13 -0
- package/dist/cjs/message.js +18 -6
- package/dist/cjs/private/assert.js +13 -0
- package/dist/cjs/private/binary-format-common.js +13 -0
- package/dist/cjs/private/binary-format-proto2.js +13 -0
- package/dist/cjs/private/binary-format-proto3.js +13 -0
- package/dist/cjs/private/enum.js +39 -1
- package/dist/cjs/private/field-list.js +13 -0
- package/dist/cjs/private/field-wrapper.js +13 -0
- package/dist/cjs/private/field.js +13 -0
- package/dist/cjs/private/json-format-common.js +16 -3
- package/dist/cjs/private/json-format-proto2.js +13 -0
- package/dist/cjs/private/json-format-proto3.js +13 -0
- package/dist/cjs/private/message-type.js +13 -0
- package/dist/cjs/private/names.js +13 -0
- package/dist/cjs/private/options-map.js +13 -0
- package/dist/cjs/private/proto-runtime.js +14 -0
- package/dist/cjs/private/scalars.js +13 -0
- package/dist/cjs/private/util-common.js +16 -3
- package/dist/cjs/private/util.js +13 -0
- package/dist/cjs/proto-base64.js +138 -0
- package/dist/cjs/proto-int64.js +19 -6
- package/dist/cjs/proto2.js +13 -0
- package/dist/cjs/proto3.js +13 -0
- package/dist/cjs/service-type.js +13 -0
- package/dist/cjs/type-registry.js +13 -0
- package/dist/esm/binary-encoding.js +14 -1
- package/dist/esm/binary-format.js +13 -0
- package/dist/esm/descriptor-registry.js +13 -0
- package/dist/esm/descriptor-set.js +13 -0
- package/dist/esm/enum.js +13 -0
- package/dist/esm/field-list.js +13 -0
- package/dist/esm/field.js +13 -0
- package/dist/esm/google/protobuf/any_pb.js +13 -33
- package/dist/esm/google/protobuf/api_pb.js +10 -30
- package/dist/esm/google/protobuf/compiler/plugin_pb.js +10 -45
- package/dist/esm/google/protobuf/descriptor_pb.js +13 -39
- package/dist/esm/google/protobuf/duration_pb.js +10 -30
- package/dist/esm/google/protobuf/empty_pb.js +10 -30
- package/dist/esm/google/protobuf/field_mask_pb.js +10 -30
- package/dist/esm/google/protobuf/source_context_pb.js +10 -30
- package/dist/esm/google/protobuf/struct_pb.js +10 -30
- package/dist/esm/google/protobuf/timestamp_pb.js +10 -30
- package/dist/esm/google/protobuf/type_pb.js +10 -30
- package/dist/esm/google/protobuf/wrappers_pb.js +10 -39
- package/dist/esm/{private/goog-varint.js → google/varint.js} +0 -0
- package/dist/esm/index.js +14 -0
- package/dist/esm/json-format.js +13 -0
- package/dist/esm/message-type.js +13 -0
- package/dist/esm/message.js +18 -6
- package/dist/esm/private/assert.js +13 -0
- package/dist/esm/private/binary-format-common.js +13 -0
- package/dist/esm/private/binary-format-proto2.js +13 -0
- package/dist/esm/private/binary-format-proto3.js +13 -0
- package/dist/esm/private/enum.js +37 -0
- package/dist/esm/private/field-list.js +13 -0
- package/dist/esm/private/field-wrapper.js +13 -0
- package/dist/esm/private/field.js +13 -0
- package/dist/esm/private/json-format-common.js +16 -3
- package/dist/esm/private/json-format-proto2.js +13 -0
- package/dist/esm/private/json-format-proto3.js +13 -0
- package/dist/esm/private/message-type.js +13 -0
- package/dist/esm/private/names.js +13 -0
- package/dist/esm/private/options-map.js +13 -0
- package/dist/esm/private/proto-runtime.js +15 -1
- package/dist/esm/private/scalars.js +13 -0
- package/dist/esm/private/util-common.js +16 -3
- package/dist/esm/private/util.js +13 -0
- package/dist/esm/proto-base64.js +135 -0
- package/dist/esm/proto-int64.js +14 -1
- package/dist/esm/proto2.js +13 -0
- package/dist/esm/proto3.js +13 -0
- package/dist/esm/service-type.js +13 -0
- package/dist/esm/type-registry.js +13 -0
- package/dist/types/google/protobuf/any_pb.d.ts +3 -3
- package/dist/types/google/protobuf/descriptor_pb.d.ts +16 -3
- package/dist/types/{private/goog-varint.d.ts → google/varint.d.ts} +0 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/json-format.d.ts +1 -1
- package/dist/types/message-type.d.ts +4 -3
- package/dist/types/message.d.ts +16 -15
- package/dist/types/private/enum.d.ts +9 -0
- package/dist/types/private/field-wrapper.d.ts +3 -3
- package/dist/types/private/message-type.d.ts +12 -2
- package/dist/types/private/proto-runtime.d.ts +18 -13
- package/dist/types/private/util.d.ts +4 -4
- package/dist/types/proto-base64.d.ts +26 -0
- package/dist/types/service-type.d.ts +7 -7
- package/package.json +3 -4
- package/dist/cjs/private/base64.js +0 -119
- package/dist/esm/private/base64.js +0 -114
- package/dist/types/private/base64.d.ts +0 -18
|
@@ -1,36 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/any.proto (package google.protobuf, syntax proto3)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
34
14
|
import { Message, proto3 } from "../../index.js";
|
|
35
15
|
/**
|
|
36
16
|
* `Any` contains an arbitrary serialized protocol buffer message along with a
|
|
@@ -58,7 +38,7 @@ import { Message, proto3 } from "../../index.js";
|
|
|
58
38
|
* foo = any.unpack(Foo.class);
|
|
59
39
|
* }
|
|
60
40
|
*
|
|
61
|
-
*
|
|
41
|
+
* Example 3: Pack and unpack a message in Python.
|
|
62
42
|
*
|
|
63
43
|
* foo = Foo(...)
|
|
64
44
|
* any = Any()
|
|
@@ -68,7 +48,7 @@ import { Message, proto3 } from "../../index.js";
|
|
|
68
48
|
* any.Unpack(foo)
|
|
69
49
|
* ...
|
|
70
50
|
*
|
|
71
|
-
*
|
|
51
|
+
* Example 4: Pack and unpack a message in Go
|
|
72
52
|
*
|
|
73
53
|
* foo := &pb.Foo{...}
|
|
74
54
|
* any, err := anypb.New(foo)
|
|
@@ -89,7 +69,7 @@ import { Message, proto3 } from "../../index.js";
|
|
|
89
69
|
*
|
|
90
70
|
*
|
|
91
71
|
* JSON
|
|
92
|
-
*
|
|
72
|
+
*
|
|
93
73
|
* The JSON representation of an `Any` value uses the regular
|
|
94
74
|
* representation of the deserialized, embedded message, with an
|
|
95
75
|
* additional field `@type` which contains the type URL. Example:
|
|
@@ -1,36 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/api.proto (package google.protobuf, syntax proto3)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
34
14
|
import { Message, proto3 } from "../../index.js";
|
|
35
15
|
import { Option, Syntax } from "./type_pb.js";
|
|
36
16
|
import { SourceContext } from "./source_context_pb.js";
|
|
@@ -1,51 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/compiler/plugin.proto (package google.protobuf.compiler, syntax proto2)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
34
|
-
// Author: kenton@google.com (Kenton Varda)
|
|
35
|
-
//
|
|
36
|
-
// WARNING: The plugin interface is currently EXPERIMENTAL and is subject to
|
|
37
|
-
// change.
|
|
38
|
-
//
|
|
39
|
-
// protoc (aka the Protocol Compiler) can be extended via plugins. A plugin is
|
|
40
|
-
// just a program that reads a CodeGeneratorRequest from stdin and writes a
|
|
41
|
-
// CodeGeneratorResponse to stdout.
|
|
42
|
-
//
|
|
43
|
-
// Plugins written using C++ can use google/protobuf/compiler/plugin.h instead
|
|
44
|
-
// of dealing with the raw protocol defined here.
|
|
45
|
-
//
|
|
46
|
-
// A plugin executable needs only to be placed somewhere in the path. The
|
|
47
|
-
// plugin should be named "protoc-gen-$NAME", and will then be used when the
|
|
48
|
-
// flag "--${NAME}_out" is passed to protoc.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
49
14
|
import { Message, proto2 } from "../../../index.js";
|
|
50
15
|
import { FileDescriptorProto, GeneratedCodeInfo } from "../descriptor_pb.js";
|
|
51
16
|
/**
|
|
@@ -1,43 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/descriptor.proto (package google.protobuf, syntax proto2)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
34
|
-
// Author: kenton@google.com (Kenton Varda)
|
|
35
|
-
// Based on original Protocol Buffers design by
|
|
36
|
-
// Sanjay Ghemawat, Jeff Dean, and others.
|
|
37
|
-
//
|
|
38
|
-
// The messages in this file describe the definitions found in .proto files.
|
|
39
|
-
// A valid .proto file can be translated directly to a FileDescriptorProto
|
|
40
|
-
// without any other information (e.g. without reading its imports).
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
41
14
|
import { Message, proto2 } from "../../index.js";
|
|
42
15
|
/**
|
|
43
16
|
* The protocol compiler can output a FileDescriptorSet containing the .proto
|
|
@@ -864,6 +837,7 @@ FieldOptions.fields = proto2.util.newFieldList(() => [
|
|
|
864
837
|
{ no: 2, name: "packed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
865
838
|
{ no: 6, name: "jstype", kind: "enum", T: proto2.getEnumType(FieldOptions_JSType), opt: true, default: FieldOptions_JSType.JS_NORMAL },
|
|
866
839
|
{ no: 5, name: "lazy", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true, default: false },
|
|
840
|
+
{ no: 15, name: "unverified_lazy", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true, default: false },
|
|
867
841
|
{ no: 3, name: "deprecated", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true, default: false },
|
|
868
842
|
{ no: 10, name: "weak", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true, default: false },
|
|
869
843
|
{ no: 999, name: "uninterpreted_option", kind: "message", T: UninterpretedOption, repeated: true },
|
|
@@ -1286,8 +1260,8 @@ export class SourceCodeInfo_Location extends Message {
|
|
|
1286
1260
|
* location.
|
|
1287
1261
|
*
|
|
1288
1262
|
* Each element is a field number or an index. They form a path from
|
|
1289
|
-
* the root FileDescriptorProto to the place where the definition.
|
|
1290
|
-
* example, this path:
|
|
1263
|
+
* the root FileDescriptorProto to the place where the definition occurs.
|
|
1264
|
+
* For example, this path:
|
|
1291
1265
|
* [ 4, 3, 2, 7, 1 ]
|
|
1292
1266
|
* refers to:
|
|
1293
1267
|
* file.message_type(3) // 4, 3
|
|
@@ -1,36 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/duration.proto (package google.protobuf, syntax proto3)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
34
14
|
import { Message, proto3, protoInt64 } from "../../index.js";
|
|
35
15
|
/**
|
|
36
16
|
* A Duration represents a signed, fixed-length span of time represented
|
|
@@ -1,36 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/empty.proto (package google.protobuf, syntax proto3)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
34
14
|
import { Message, proto3 } from "../../index.js";
|
|
35
15
|
/**
|
|
36
16
|
* A generic empty message that you can re-use to avoid defining duplicated
|
|
@@ -1,36 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/field_mask.proto (package google.protobuf, syntax proto3)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
34
14
|
import { Message, proto3 } from "../../index.js";
|
|
35
15
|
/**
|
|
36
16
|
* `FieldMask` represents a set of symbolic field paths, for example:
|
|
@@ -1,36 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/source_context.proto (package google.protobuf, syntax proto3)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
34
14
|
import { Message, proto3 } from "../../index.js";
|
|
35
15
|
/**
|
|
36
16
|
* `SourceContext` represents information about the source of a
|
|
@@ -1,36 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/struct.proto (package google.protobuf, syntax proto3)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
34
14
|
import { Message, proto3 } from "../../index.js";
|
|
35
15
|
/**
|
|
36
16
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
@@ -1,36 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/timestamp.proto (package google.protobuf, syntax proto3)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
34
14
|
import { Message, proto3, protoInt64 } from "../../index.js";
|
|
35
15
|
/**
|
|
36
16
|
* A Timestamp represents a point in time independent of any time zone or local
|
|
@@ -1,36 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
|
-
// @generated from file google/protobuf/type.proto (package google.protobuf, syntax proto3)
|
|
1
|
+
// Copyright 2021-2022 Buf Technologies, Inc.
|
|
4
2
|
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
8
6
|
//
|
|
9
|
-
//
|
|
10
|
-
// modification, are permitted provided that the following conditions are
|
|
11
|
-
// met:
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
8
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
// distribution.
|
|
19
|
-
// * Neither the name of Google Inc. nor the names of its
|
|
20
|
-
// contributors may be used to endorse or promote products derived from
|
|
21
|
-
// this software without specific prior written permission.
|
|
22
|
-
//
|
|
23
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
34
14
|
import { Message, proto3 } from "../../index.js";
|
|
35
15
|
import { SourceContext } from "./source_context_pb.js";
|
|
36
16
|
import { Any } from "./any_pb.js";
|