@inco/js 0.6.8 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/dist/cjs/advancedacl/session-key.d.ts +39 -19
- package/dist/cjs/advancedacl/session-key.js +59 -108
- package/dist/cjs/attestedcompute/attested-compute.d.ts +6 -6
- package/dist/cjs/attestedcompute/attested-compute.js +5 -28
- package/dist/cjs/attesteddecrypt/attested-decrypt.d.ts +68 -16
- package/dist/cjs/attesteddecrypt/attested-decrypt.js +108 -66
- package/dist/cjs/attesteddecrypt/types.d.ts +8 -3
- package/dist/cjs/attesteddecrypt/types.js +1 -1
- package/dist/cjs/encryption/encryption.d.ts +8 -10
- package/dist/cjs/encryption/encryption.js +6 -6
- package/dist/cjs/generated/abis/add-two.d.ts +1 -1
- package/dist/cjs/generated/abis/add-two.js +1 -1
- package/dist/cjs/generated/abis/lightning-preview.d.ts +40 -0
- package/dist/cjs/generated/abis/lightning-preview.js +29 -1
- package/dist/cjs/generated/abis/lightning.d.ts +1 -1
- package/dist/cjs/generated/abis/lightning.js +1 -1
- package/dist/cjs/generated/abis/verifier.d.ts +126 -67
- package/dist/cjs/generated/abis/verifier.js +108 -54
- package/dist/cjs/generated/es/inco/covalidator/compute/v1/types_pb.d.ts +15 -1
- package/dist/cjs/generated/es/inco/covalidator/compute/v1/types_pb.js +1 -1
- package/dist/cjs/generated/es/inco/kms/lite/v1/kms_service_pb.d.ts +87 -132
- package/dist/cjs/generated/es/inco/kms/lite/v1/kms_service_pb.js +21 -27
- package/dist/cjs/generated/lightning.d.ts +40 -32
- package/dist/cjs/generated/lightning.js +43 -33
- package/dist/cjs/generated/local-node.d.ts +11 -11
- package/dist/cjs/generated/local-node.js +28 -12
- package/dist/cjs/kms/client.d.ts +8 -4
- package/dist/cjs/kms/client.js +9 -4
- package/dist/cjs/kms/quorumClient.d.ts +58 -0
- package/dist/cjs/kms/quorumClient.js +378 -0
- package/dist/cjs/kms/thresholdPromises.d.ts +7 -0
- package/dist/cjs/kms/thresholdPromises.js +52 -0
- package/dist/cjs/lite/deployments.d.ts +20 -2
- package/dist/cjs/lite/deployments.js +1 -1
- package/dist/cjs/lite/index.d.ts +1 -2
- package/dist/cjs/lite/index.js +1 -2
- package/dist/cjs/lite/lightning.d.ts +109 -77
- package/dist/cjs/lite/lightning.js +279 -112
- package/dist/cjs/local/local-node.d.ts +1 -2
- package/dist/cjs/local/local-node.js +2 -3
- package/dist/cjs/test/mocks.d.ts +15 -0
- package/dist/cjs/test/mocks.js +45 -0
- package/dist/cjs/viem.d.ts +1 -1
- package/dist/esm/advancedacl/session-key.d.ts +39 -19
- package/dist/esm/advancedacl/session-key.js +52 -100
- package/dist/esm/attestedcompute/attested-compute.d.ts +6 -6
- package/dist/esm/attestedcompute/attested-compute.js +6 -29
- package/dist/esm/attesteddecrypt/attested-decrypt.d.ts +68 -16
- package/dist/esm/attesteddecrypt/attested-decrypt.js +109 -68
- package/dist/esm/attesteddecrypt/types.d.ts +8 -3
- package/dist/esm/attesteddecrypt/types.js +1 -1
- package/dist/esm/encryption/encryption.d.ts +8 -10
- package/dist/esm/encryption/encryption.js +6 -6
- package/dist/esm/generated/abis/add-two.d.ts +1 -1
- package/dist/esm/generated/abis/add-two.js +1 -1
- package/dist/esm/generated/abis/lightning-preview.d.ts +40 -0
- package/dist/esm/generated/abis/lightning-preview.js +29 -1
- package/dist/esm/generated/abis/lightning.d.ts +1 -1
- package/dist/esm/generated/abis/lightning.js +1 -1
- package/dist/esm/generated/abis/verifier.d.ts +126 -67
- package/dist/esm/generated/abis/verifier.js +108 -54
- package/dist/esm/generated/es/inco/covalidator/compute/v1/types_pb.d.ts +15 -1
- package/dist/esm/generated/es/inco/covalidator/compute/v1/types_pb.js +1 -1
- package/dist/esm/generated/es/inco/kms/lite/v1/kms_service_pb.d.ts +87 -132
- package/dist/esm/generated/es/inco/kms/lite/v1/kms_service_pb.js +19 -25
- package/dist/esm/generated/lightning.d.ts +40 -32
- package/dist/esm/generated/lightning.js +43 -33
- package/dist/esm/generated/local-node.d.ts +11 -11
- package/dist/esm/generated/local-node.js +28 -12
- package/dist/esm/kms/client.d.ts +8 -4
- package/dist/esm/kms/client.js +8 -4
- package/dist/esm/kms/quorumClient.d.ts +58 -0
- package/dist/esm/kms/quorumClient.js +374 -0
- package/dist/esm/kms/thresholdPromises.d.ts +7 -0
- package/dist/esm/kms/thresholdPromises.js +49 -0
- package/dist/esm/lite/deployments.d.ts +20 -2
- package/dist/esm/lite/deployments.js +1 -1
- package/dist/esm/lite/index.d.ts +1 -2
- package/dist/esm/lite/index.js +1 -2
- package/dist/esm/lite/lightning.d.ts +109 -77
- package/dist/esm/lite/lightning.js +278 -111
- package/dist/esm/local/local-node.d.ts +1 -2
- package/dist/esm/local/local-node.js +2 -3
- package/dist/esm/test/mocks.d.ts +15 -0
- package/dist/esm/test/mocks.js +39 -0
- package/dist/esm/viem.d.ts +1 -1
- package/dist/types/advancedacl/session-key.d.ts +39 -19
- package/dist/types/attestedcompute/attested-compute.d.ts +6 -6
- package/dist/types/attesteddecrypt/attested-decrypt.d.ts +68 -16
- package/dist/types/attesteddecrypt/types.d.ts +8 -3
- package/dist/types/encryption/encryption.d.ts +8 -10
- package/dist/types/generated/abis/add-two.d.ts +1 -1
- package/dist/types/generated/abis/lightning-preview.d.ts +40 -0
- package/dist/types/generated/abis/lightning.d.ts +1 -1
- package/dist/types/generated/abis/verifier.d.ts +126 -67
- package/dist/types/generated/es/inco/covalidator/compute/v1/types_pb.d.ts +15 -1
- package/dist/types/generated/es/inco/kms/lite/v1/kms_service_pb.d.ts +87 -132
- package/dist/types/generated/lightning.d.ts +40 -32
- package/dist/types/generated/local-node.d.ts +11 -11
- package/dist/types/kms/client.d.ts +8 -4
- package/dist/types/kms/quorumClient.d.ts +58 -0
- package/dist/types/kms/thresholdPromises.d.ts +7 -0
- package/dist/types/lite/deployments.d.ts +20 -2
- package/dist/types/lite/index.d.ts +1 -2
- package/dist/types/lite/lightning.d.ts +109 -77
- package/dist/types/local/local-node.d.ts +1 -2
- package/dist/types/test/mocks.d.ts +15 -0
- package/dist/types/viem.d.ts +1 -1
- package/package.json +3 -3
- package/dist/cjs/attestedreveal/attested-reveal.d.ts +0 -21
- package/dist/cjs/attestedreveal/attested-reveal.js +0 -67
- package/dist/cjs/attestedreveal/index.d.ts +0 -1
- package/dist/cjs/attestedreveal/index.js +0 -18
- package/dist/cjs/attestedreveal/types.d.ts +0 -7
- package/dist/cjs/attestedreveal/types.js +0 -16
- package/dist/cjs/generated/es/cosmos_proto/cosmos_pb.d.ts +0 -174
- package/dist/cjs/generated/es/cosmos_proto/cosmos_pb.js +0 -118
- package/dist/cjs/generated/es/inco/fhe/v1/types_pb.d.ts +0 -419
- package/dist/cjs/generated/es/inco/fhe/v1/types_pb.js +0 -136
- package/dist/cjs/lite/reencrypt.d.ts +0 -23
- package/dist/cjs/lite/reencrypt.js +0 -131
- package/dist/esm/attestedreveal/attested-reveal.d.ts +0 -21
- package/dist/esm/attestedreveal/attested-reveal.js +0 -64
- package/dist/esm/attestedreveal/index.d.ts +0 -1
- package/dist/esm/attestedreveal/index.js +0 -2
- package/dist/esm/attestedreveal/types.d.ts +0 -7
- package/dist/esm/attestedreveal/types.js +0 -12
- package/dist/esm/generated/es/cosmos_proto/cosmos_pb.d.ts +0 -174
- package/dist/esm/generated/es/cosmos_proto/cosmos_pb.js +0 -115
- package/dist/esm/generated/es/inco/fhe/v1/types_pb.d.ts +0 -419
- package/dist/esm/generated/es/inco/fhe/v1/types_pb.js +0 -133
- package/dist/esm/lite/reencrypt.d.ts +0 -23
- package/dist/esm/lite/reencrypt.js +0 -122
- package/dist/types/attestedreveal/attested-reveal.d.ts +0 -21
- package/dist/types/attestedreveal/index.d.ts +0 -1
- package/dist/types/attestedreveal/types.d.ts +0 -7
- package/dist/types/generated/es/cosmos_proto/cosmos_pb.d.ts +0 -174
- package/dist/types/generated/es/inco/fhe/v1/types_pb.d.ts +0 -419
- package/dist/types/lite/reencrypt.d.ts +0 -23
|
@@ -1,174 +0,0 @@
|
|
|
1
|
-
import type { GenEnum, GenExtension, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
-
import type { FieldOptions, FileOptions, MessageOptions, MethodOptions } from "@bufbuild/protobuf/wkt";
|
|
3
|
-
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
-
/**
|
|
5
|
-
* Describes the file cosmos_proto/cosmos.proto.
|
|
6
|
-
*/
|
|
7
|
-
export declare const file_cosmos_proto_cosmos: GenFile;
|
|
8
|
-
/**
|
|
9
|
-
* InterfaceDescriptor describes an interface type to be used with
|
|
10
|
-
* accepts_interface and implements_interface and declared by declare_interface.
|
|
11
|
-
*
|
|
12
|
-
* @generated from message cosmos_proto.InterfaceDescriptor
|
|
13
|
-
*/
|
|
14
|
-
export type InterfaceDescriptor = Message<"cosmos_proto.InterfaceDescriptor"> & {
|
|
15
|
-
/**
|
|
16
|
-
* name is the name of the interface. It should be a short-name (without
|
|
17
|
-
* a period) such that the fully qualified name of the interface will be
|
|
18
|
-
* package.name, ex. for the package a.b and interface named C, the
|
|
19
|
-
* fully-qualified name will be a.b.C.
|
|
20
|
-
*
|
|
21
|
-
* @generated from field: string name = 1;
|
|
22
|
-
*/
|
|
23
|
-
name: string;
|
|
24
|
-
/**
|
|
25
|
-
* description is a human-readable description of the interface and its
|
|
26
|
-
* purpose.
|
|
27
|
-
*
|
|
28
|
-
* @generated from field: string description = 2;
|
|
29
|
-
*/
|
|
30
|
-
description: string;
|
|
31
|
-
};
|
|
32
|
-
/**
|
|
33
|
-
* Describes the message cosmos_proto.InterfaceDescriptor.
|
|
34
|
-
* Use `create(InterfaceDescriptorSchema)` to create a new message.
|
|
35
|
-
*/
|
|
36
|
-
export declare const InterfaceDescriptorSchema: GenMessage<InterfaceDescriptor>;
|
|
37
|
-
/**
|
|
38
|
-
* ScalarDescriptor describes an scalar type to be used with
|
|
39
|
-
* the scalar field option and declared by declare_scalar.
|
|
40
|
-
* Scalars extend simple protobuf built-in types with additional
|
|
41
|
-
* syntax and semantics, for instance to represent big integers.
|
|
42
|
-
* Scalars should ideally define an encoding such that there is only one
|
|
43
|
-
* valid syntactical representation for a given semantic meaning,
|
|
44
|
-
* i.e. the encoding should be deterministic.
|
|
45
|
-
*
|
|
46
|
-
* @generated from message cosmos_proto.ScalarDescriptor
|
|
47
|
-
*/
|
|
48
|
-
export type ScalarDescriptor = Message<"cosmos_proto.ScalarDescriptor"> & {
|
|
49
|
-
/**
|
|
50
|
-
* name is the name of the scalar. It should be a short-name (without
|
|
51
|
-
* a period) such that the fully qualified name of the scalar will be
|
|
52
|
-
* package.name, ex. for the package a.b and scalar named C, the
|
|
53
|
-
* fully-qualified name will be a.b.C.
|
|
54
|
-
*
|
|
55
|
-
* @generated from field: string name = 1;
|
|
56
|
-
*/
|
|
57
|
-
name: string;
|
|
58
|
-
/**
|
|
59
|
-
* description is a human-readable description of the scalar and its
|
|
60
|
-
* encoding format. For instance a big integer or decimal scalar should
|
|
61
|
-
* specify precisely the expected encoding format.
|
|
62
|
-
*
|
|
63
|
-
* @generated from field: string description = 2;
|
|
64
|
-
*/
|
|
65
|
-
description: string;
|
|
66
|
-
/**
|
|
67
|
-
* field_type is the type of field with which this scalar can be used.
|
|
68
|
-
* Scalars can be used with one and only one type of field so that
|
|
69
|
-
* encoding standards and simple and clear. Currently only string and
|
|
70
|
-
* bytes fields are supported for scalars.
|
|
71
|
-
*
|
|
72
|
-
* @generated from field: repeated cosmos_proto.ScalarType field_type = 3;
|
|
73
|
-
*/
|
|
74
|
-
fieldType: ScalarType[];
|
|
75
|
-
};
|
|
76
|
-
/**
|
|
77
|
-
* Describes the message cosmos_proto.ScalarDescriptor.
|
|
78
|
-
* Use `create(ScalarDescriptorSchema)` to create a new message.
|
|
79
|
-
*/
|
|
80
|
-
export declare const ScalarDescriptorSchema: GenMessage<ScalarDescriptor>;
|
|
81
|
-
/**
|
|
82
|
-
* @generated from enum cosmos_proto.ScalarType
|
|
83
|
-
*/
|
|
84
|
-
export declare enum ScalarType {
|
|
85
|
-
/**
|
|
86
|
-
* @generated from enum value: SCALAR_TYPE_UNSPECIFIED = 0;
|
|
87
|
-
*/
|
|
88
|
-
UNSPECIFIED = 0,
|
|
89
|
-
/**
|
|
90
|
-
* @generated from enum value: SCALAR_TYPE_STRING = 1;
|
|
91
|
-
*/
|
|
92
|
-
STRING = 1,
|
|
93
|
-
/**
|
|
94
|
-
* @generated from enum value: SCALAR_TYPE_BYTES = 2;
|
|
95
|
-
*/
|
|
96
|
-
BYTES = 2
|
|
97
|
-
}
|
|
98
|
-
/**
|
|
99
|
-
* Describes the enum cosmos_proto.ScalarType.
|
|
100
|
-
*/
|
|
101
|
-
export declare const ScalarTypeSchema: GenEnum<ScalarType>;
|
|
102
|
-
/**
|
|
103
|
-
* method_added_in is used to indicate from which version the method was added.
|
|
104
|
-
*
|
|
105
|
-
* @generated from extension: string method_added_in = 93001;
|
|
106
|
-
*/
|
|
107
|
-
export declare const method_added_in: GenExtension<MethodOptions, string>;
|
|
108
|
-
/**
|
|
109
|
-
* implements_interface is used to indicate the type name of the interface
|
|
110
|
-
* that a message implements so that it can be used in google.protobuf.Any
|
|
111
|
-
* fields that accept that interface. A message can implement multiple
|
|
112
|
-
* interfaces. Interfaces should be declared using a declare_interface
|
|
113
|
-
* file option.
|
|
114
|
-
*
|
|
115
|
-
* @generated from extension: repeated string implements_interface = 93001;
|
|
116
|
-
*/
|
|
117
|
-
export declare const implements_interface: GenExtension<MessageOptions, string[]>;
|
|
118
|
-
/**
|
|
119
|
-
* message_added_in is used to indicate from which version the message was added.
|
|
120
|
-
*
|
|
121
|
-
* @generated from extension: string message_added_in = 93002;
|
|
122
|
-
*/
|
|
123
|
-
export declare const message_added_in: GenExtension<MessageOptions, string>;
|
|
124
|
-
/**
|
|
125
|
-
* accepts_interface is used to annotate that a google.protobuf.Any
|
|
126
|
-
* field accepts messages that implement the specified interface.
|
|
127
|
-
* Interfaces should be declared using a declare_interface file option.
|
|
128
|
-
*
|
|
129
|
-
* @generated from extension: string accepts_interface = 93001;
|
|
130
|
-
*/
|
|
131
|
-
export declare const accepts_interface: GenExtension<FieldOptions, string>;
|
|
132
|
-
/**
|
|
133
|
-
* scalar is used to indicate that this field follows the formatting defined
|
|
134
|
-
* by the named scalar which should be declared with declare_scalar. Code
|
|
135
|
-
* generators may choose to use this information to map this field to a
|
|
136
|
-
* language-specific type representing the scalar.
|
|
137
|
-
*
|
|
138
|
-
* @generated from extension: string scalar = 93002;
|
|
139
|
-
*/
|
|
140
|
-
export declare const scalar: GenExtension<FieldOptions, string>;
|
|
141
|
-
/**
|
|
142
|
-
* field_added_in is used to indicate from which version the field was added.
|
|
143
|
-
*
|
|
144
|
-
* @generated from extension: string field_added_in = 93003;
|
|
145
|
-
*/
|
|
146
|
-
export declare const field_added_in: GenExtension<FieldOptions, string>;
|
|
147
|
-
/**
|
|
148
|
-
* declare_interface declares an interface type to be used with
|
|
149
|
-
* accepts_interface and implements_interface. Interface names are
|
|
150
|
-
* expected to follow the following convention such that their declaration
|
|
151
|
-
* can be discovered by tools: for a given interface type a.b.C, it is
|
|
152
|
-
* expected that the declaration will be found in a protobuf file named
|
|
153
|
-
* a/b/interfaces.proto in the file descriptor set.
|
|
154
|
-
*
|
|
155
|
-
* @generated from extension: repeated cosmos_proto.InterfaceDescriptor declare_interface = 793021;
|
|
156
|
-
*/
|
|
157
|
-
export declare const declare_interface: GenExtension<FileOptions, InterfaceDescriptor[]>;
|
|
158
|
-
/**
|
|
159
|
-
* declare_scalar declares a scalar type to be used with
|
|
160
|
-
* the scalar field option. Scalar names are
|
|
161
|
-
* expected to follow the following convention such that their declaration
|
|
162
|
-
* can be discovered by tools: for a given scalar type a.b.C, it is
|
|
163
|
-
* expected that the declaration will be found in a protobuf file named
|
|
164
|
-
* a/b/scalars.proto in the file descriptor set.
|
|
165
|
-
*
|
|
166
|
-
* @generated from extension: repeated cosmos_proto.ScalarDescriptor declare_scalar = 793022;
|
|
167
|
-
*/
|
|
168
|
-
export declare const declare_scalar: GenExtension<FileOptions, ScalarDescriptor[]>;
|
|
169
|
-
/**
|
|
170
|
-
* file_added_in is used to indicate from which the version the file was added.
|
|
171
|
-
*
|
|
172
|
-
* @generated from extension: string file_added_in = 793023;
|
|
173
|
-
*/
|
|
174
|
-
export declare const file_added_in: GenExtension<FileOptions, string>;
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts"
|
|
3
|
-
// @generated from file cosmos_proto/cosmos.proto (package cosmos_proto, syntax proto3)
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.file_added_in = exports.declare_scalar = exports.declare_interface = exports.field_added_in = exports.scalar = exports.accepts_interface = exports.message_added_in = exports.implements_interface = exports.method_added_in = exports.ScalarTypeSchema = exports.ScalarType = exports.ScalarDescriptorSchema = exports.InterfaceDescriptorSchema = exports.file_cosmos_proto_cosmos = void 0;
|
|
7
|
-
const codegenv2_1 = require("@bufbuild/protobuf/codegenv2");
|
|
8
|
-
const wkt_1 = require("@bufbuild/protobuf/wkt");
|
|
9
|
-
/**
|
|
10
|
-
* Describes the file cosmos_proto/cosmos.proto.
|
|
11
|
-
*/
|
|
12
|
-
exports.file_cosmos_proto_cosmos = (0, codegenv2_1.fileDesc)("Chljb3Ntb3NfcHJvdG8vY29zbW9zLnByb3RvEgxjb3Ntb3NfcHJvdG8iOAoTSW50ZXJmYWNlRGVzY3JpcHRvchIMCgRuYW1lGAEgASgJEhMKC2Rlc2NyaXB0aW9uGAIgASgJImMKEFNjYWxhckRlc2NyaXB0b3ISDAoEbmFtZRgBIAEoCRITCgtkZXNjcmlwdGlvbhgCIAEoCRIsCgpmaWVsZF90eXBlGAMgAygOMhguY29zbW9zX3Byb3RvLlNjYWxhclR5cGUqWAoKU2NhbGFyVHlwZRIbChdTQ0FMQVJfVFlQRV9VTlNQRUNJRklFRBAAEhYKElNDQUxBUl9UWVBFX1NUUklORxABEhUKEVNDQUxBUl9UWVBFX0JZVEVTEAI6SAoPbWV0aG9kX2FkZGVkX2luEh4uZ29vZ2xlLnByb3RvYnVmLk1ldGhvZE9wdGlvbnMYydYFIAEoCVINbWV0aG9kQWRkZWRJbjpUChRpbXBsZW1lbnRzX2ludGVyZmFjZRIfLmdvb2dsZS5wcm90b2J1Zi5NZXNzYWdlT3B0aW9ucxjJ1gUgAygJUhNpbXBsZW1lbnRzSW50ZXJmYWNlOksKEG1lc3NhZ2VfYWRkZWRfaW4SHy5nb29nbGUucHJvdG9idWYuTWVzc2FnZU9wdGlvbnMYytYFIAEoCVIObWVzc2FnZUFkZGVkSW46TAoRYWNjZXB0c19pbnRlcmZhY2USHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGMnWBSABKAlSEGFjY2VwdHNJbnRlcmZhY2U6NwoGc2NhbGFyEh0uZ29vZ2xlLnByb3RvYnVmLkZpZWxkT3B0aW9ucxjK1gUgASgJUgZzY2FsYXI6RQoOZmllbGRfYWRkZWRfaW4SHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGMvWBSABKAlSDGZpZWxkQWRkZWRJbjpuChFkZWNsYXJlX2ludGVyZmFjZRIcLmdvb2dsZS5wcm90b2J1Zi5GaWxlT3B0aW9ucxi9szAgAygLMiEuY29zbW9zX3Byb3RvLkludGVyZmFjZURlc2NyaXB0b3JSEGRlY2xhcmVJbnRlcmZhY2U6ZQoOZGVjbGFyZV9zY2FsYXISHC5nb29nbGUucHJvdG9idWYuRmlsZU9wdGlvbnMYvrMwIAMoCzIeLmNvc21vc19wcm90by5TY2FsYXJEZXNjcmlwdG9yUg1kZWNsYXJlU2NhbGFyOkIKDWZpbGVfYWRkZWRfaW4SHC5nb29nbGUucHJvdG9idWYuRmlsZU9wdGlvbnMYv7MwIAEoCVILZmlsZUFkZGVkSW5CLVorZ2l0aHViLmNvbS9jb3Ntb3MvY29zbW9zLXByb3RvO2Nvc21vc19wcm90b2IGcHJvdG8z", [wkt_1.file_google_protobuf_descriptor]);
|
|
13
|
-
/**
|
|
14
|
-
* Describes the message cosmos_proto.InterfaceDescriptor.
|
|
15
|
-
* Use `create(InterfaceDescriptorSchema)` to create a new message.
|
|
16
|
-
*/
|
|
17
|
-
exports.InterfaceDescriptorSchema = (0, codegenv2_1.messageDesc)(exports.file_cosmos_proto_cosmos, 0);
|
|
18
|
-
/**
|
|
19
|
-
* Describes the message cosmos_proto.ScalarDescriptor.
|
|
20
|
-
* Use `create(ScalarDescriptorSchema)` to create a new message.
|
|
21
|
-
*/
|
|
22
|
-
exports.ScalarDescriptorSchema = (0, codegenv2_1.messageDesc)(exports.file_cosmos_proto_cosmos, 1);
|
|
23
|
-
/**
|
|
24
|
-
* @generated from enum cosmos_proto.ScalarType
|
|
25
|
-
*/
|
|
26
|
-
var ScalarType;
|
|
27
|
-
(function (ScalarType) {
|
|
28
|
-
/**
|
|
29
|
-
* @generated from enum value: SCALAR_TYPE_UNSPECIFIED = 0;
|
|
30
|
-
*/
|
|
31
|
-
ScalarType[ScalarType["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
32
|
-
/**
|
|
33
|
-
* @generated from enum value: SCALAR_TYPE_STRING = 1;
|
|
34
|
-
*/
|
|
35
|
-
ScalarType[ScalarType["STRING"] = 1] = "STRING";
|
|
36
|
-
/**
|
|
37
|
-
* @generated from enum value: SCALAR_TYPE_BYTES = 2;
|
|
38
|
-
*/
|
|
39
|
-
ScalarType[ScalarType["BYTES"] = 2] = "BYTES";
|
|
40
|
-
})(ScalarType || (exports.ScalarType = ScalarType = {}));
|
|
41
|
-
/**
|
|
42
|
-
* Describes the enum cosmos_proto.ScalarType.
|
|
43
|
-
*/
|
|
44
|
-
exports.ScalarTypeSchema = (0, codegenv2_1.enumDesc)(exports.file_cosmos_proto_cosmos, 0);
|
|
45
|
-
/**
|
|
46
|
-
* method_added_in is used to indicate from which version the method was added.
|
|
47
|
-
*
|
|
48
|
-
* @generated from extension: string method_added_in = 93001;
|
|
49
|
-
*/
|
|
50
|
-
exports.method_added_in = (0, codegenv2_1.extDesc)(exports.file_cosmos_proto_cosmos, 0);
|
|
51
|
-
/**
|
|
52
|
-
* implements_interface is used to indicate the type name of the interface
|
|
53
|
-
* that a message implements so that it can be used in google.protobuf.Any
|
|
54
|
-
* fields that accept that interface. A message can implement multiple
|
|
55
|
-
* interfaces. Interfaces should be declared using a declare_interface
|
|
56
|
-
* file option.
|
|
57
|
-
*
|
|
58
|
-
* @generated from extension: repeated string implements_interface = 93001;
|
|
59
|
-
*/
|
|
60
|
-
exports.implements_interface = (0, codegenv2_1.extDesc)(exports.file_cosmos_proto_cosmos, 1);
|
|
61
|
-
/**
|
|
62
|
-
* message_added_in is used to indicate from which version the message was added.
|
|
63
|
-
*
|
|
64
|
-
* @generated from extension: string message_added_in = 93002;
|
|
65
|
-
*/
|
|
66
|
-
exports.message_added_in = (0, codegenv2_1.extDesc)(exports.file_cosmos_proto_cosmos, 2);
|
|
67
|
-
/**
|
|
68
|
-
* accepts_interface is used to annotate that a google.protobuf.Any
|
|
69
|
-
* field accepts messages that implement the specified interface.
|
|
70
|
-
* Interfaces should be declared using a declare_interface file option.
|
|
71
|
-
*
|
|
72
|
-
* @generated from extension: string accepts_interface = 93001;
|
|
73
|
-
*/
|
|
74
|
-
exports.accepts_interface = (0, codegenv2_1.extDesc)(exports.file_cosmos_proto_cosmos, 3);
|
|
75
|
-
/**
|
|
76
|
-
* scalar is used to indicate that this field follows the formatting defined
|
|
77
|
-
* by the named scalar which should be declared with declare_scalar. Code
|
|
78
|
-
* generators may choose to use this information to map this field to a
|
|
79
|
-
* language-specific type representing the scalar.
|
|
80
|
-
*
|
|
81
|
-
* @generated from extension: string scalar = 93002;
|
|
82
|
-
*/
|
|
83
|
-
exports.scalar = (0, codegenv2_1.extDesc)(exports.file_cosmos_proto_cosmos, 4);
|
|
84
|
-
/**
|
|
85
|
-
* field_added_in is used to indicate from which version the field was added.
|
|
86
|
-
*
|
|
87
|
-
* @generated from extension: string field_added_in = 93003;
|
|
88
|
-
*/
|
|
89
|
-
exports.field_added_in = (0, codegenv2_1.extDesc)(exports.file_cosmos_proto_cosmos, 5);
|
|
90
|
-
/**
|
|
91
|
-
* declare_interface declares an interface type to be used with
|
|
92
|
-
* accepts_interface and implements_interface. Interface names are
|
|
93
|
-
* expected to follow the following convention such that their declaration
|
|
94
|
-
* can be discovered by tools: for a given interface type a.b.C, it is
|
|
95
|
-
* expected that the declaration will be found in a protobuf file named
|
|
96
|
-
* a/b/interfaces.proto in the file descriptor set.
|
|
97
|
-
*
|
|
98
|
-
* @generated from extension: repeated cosmos_proto.InterfaceDescriptor declare_interface = 793021;
|
|
99
|
-
*/
|
|
100
|
-
exports.declare_interface = (0, codegenv2_1.extDesc)(exports.file_cosmos_proto_cosmos, 6);
|
|
101
|
-
/**
|
|
102
|
-
* declare_scalar declares a scalar type to be used with
|
|
103
|
-
* the scalar field option. Scalar names are
|
|
104
|
-
* expected to follow the following convention such that their declaration
|
|
105
|
-
* can be discovered by tools: for a given scalar type a.b.C, it is
|
|
106
|
-
* expected that the declaration will be found in a protobuf file named
|
|
107
|
-
* a/b/scalars.proto in the file descriptor set.
|
|
108
|
-
*
|
|
109
|
-
* @generated from extension: repeated cosmos_proto.ScalarDescriptor declare_scalar = 793022;
|
|
110
|
-
*/
|
|
111
|
-
exports.declare_scalar = (0, codegenv2_1.extDesc)(exports.file_cosmos_proto_cosmos, 7);
|
|
112
|
-
/**
|
|
113
|
-
* file_added_in is used to indicate from which the version the file was added.
|
|
114
|
-
*
|
|
115
|
-
* @generated from extension: string file_added_in = 793023;
|
|
116
|
-
*/
|
|
117
|
-
exports.file_added_in = (0, codegenv2_1.extDesc)(exports.file_cosmos_proto_cosmos, 8);
|
|
118
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29zbW9zX3BiLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9lcy9jb3Ntb3NfcHJvdG8vY29zbW9zX3BiLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxpRUFBaUU7QUFDakUsdUZBQXVGO0FBQ3ZGLG9CQUFvQjs7O0FBR3BCLDREQUF3RjtBQUV4RixnREFBeUU7QUFHekU7O0dBRUc7QUFDVSxRQUFBLHdCQUF3QixHQUNuQyxJQUFBLG9CQUFRLEVBQUMsczVDQUFzNUMsRUFBRSxDQUFDLHFDQUErQixDQUFDLENBQUMsQ0FBQztBQTRCdDhDOzs7R0FHRztBQUNVLFFBQUEseUJBQXlCLEdBQ3BDLElBQUEsdUJBQVcsRUFBQyxnQ0FBd0IsRUFBRSxDQUFDLENBQUMsQ0FBQztBQTRDM0M7OztHQUdHO0FBQ1UsUUFBQSxzQkFBc0IsR0FDakMsSUFBQSx1QkFBVyxFQUFDLGdDQUF3QixFQUFFLENBQUMsQ0FBQyxDQUFDO0FBRTNDOztHQUVHO0FBQ0gsSUFBWSxVQWVYO0FBZkQsV0FBWSxVQUFVO0lBQ3BCOztPQUVHO0lBQ0gseURBQWUsQ0FBQTtJQUVmOztPQUVHO0lBQ0gsK0NBQVUsQ0FBQTtJQUVWOztPQUVHO0lBQ0gsNkNBQVMsQ0FBQTtBQUNYLENBQUMsRUFmVyxVQUFVLDBCQUFWLFVBQVUsUUFlckI7QUFFRDs7R0FFRztBQUNVLFFBQUEsZ0JBQWdCLEdBQzNCLElBQUEsb0JBQVEsRUFBQyxnQ0FBd0IsRUFBRSxDQUFDLENBQUMsQ0FBQztBQUV4Qzs7OztHQUlHO0FBQ1UsUUFBQSxlQUFlLEdBQzFCLElBQUEsbUJBQU8sRUFBQyxnQ0FBd0IsRUFBRSxDQUFDLENBQUMsQ0FBQztBQUV2Qzs7Ozs7Ozs7R0FRRztBQUNVLFFBQUEsb0JBQW9CLEdBQy9CLElBQUEsbUJBQU8sRUFBQyxnQ0FBd0IsRUFBRSxDQUFDLENBQUMsQ0FBQztBQUV2Qzs7OztHQUlHO0FBQ1UsUUFBQSxnQkFBZ0IsR0FDM0IsSUFBQSxtQkFBTyxFQUFDLGdDQUF3QixFQUFFLENBQUMsQ0FBQyxDQUFDO0FBRXZDOzs7Ozs7R0FNRztBQUNVLFFBQUEsaUJBQWlCLEdBQzVCLElBQUEsbUJBQU8sRUFBQyxnQ0FBd0IsRUFBRSxDQUFDLENBQUMsQ0FBQztBQUV2Qzs7Ozs7OztHQU9HO0FBQ1UsUUFBQSxNQUFNLEdBQ2pCLElBQUEsbUJBQU8sRUFBQyxnQ0FBd0IsRUFBRSxDQUFDLENBQUMsQ0FBQztBQUV2Qzs7OztHQUlHO0FBQ1UsUUFBQSxjQUFjLEdBQ3pCLElBQUEsbUJBQU8sRUFBQyxnQ0FBd0IsRUFBRSxDQUFDLENBQUMsQ0FBQztBQUV2Qzs7Ozs7Ozs7O0dBU0c7QUFDVSxRQUFBLGlCQUFpQixHQUM1QixJQUFBLG1CQUFPLEVBQUMsZ0NBQXdCLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUFFdkM7Ozs7Ozs7OztHQVNHO0FBQ1UsUUFBQSxjQUFjLEdBQ3pCLElBQUEsbUJBQU8sRUFBQyxnQ0FBd0IsRUFBRSxDQUFDLENBQUMsQ0FBQztBQUV2Qzs7OztHQUlHO0FBQ1UsUUFBQSxhQUFhLEdBQ3hCLElBQUEsbUJBQU8sRUFBQyxnQ0FBd0IsRUFBRSxDQUFDLENBQUMsQ0FBQyJ9
|