@chainlink/cre-sdk 1.0.0 → 1.0.1
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/generated/capabilities/blockchain/evm/v1alpha/client_pb.d.ts +0 -192
- package/dist/generated/capabilities/blockchain/evm/v1alpha/client_pb.js +4 -27
- package/dist/generated/capabilities/networking/confidentialhttp/v1alpha/client_pb.d.ts +245 -0
- package/dist/generated/capabilities/networking/confidentialhttp/v1alpha/client_pb.js +47 -0
- package/dist/generated/capabilities/networking/http/v1alpha/client_pb.d.ts +21 -16
- package/dist/generated/capabilities/networking/http/v1alpha/client_pb.js +2 -1
- package/dist/generated-sdk/capabilities/blockchain/evm/v1alpha/client_sdk_gen.d.ts +12 -13
- package/dist/generated-sdk/capabilities/blockchain/evm/v1alpha/client_sdk_gen.js +33 -103
- package/dist/generated-sdk/capabilities/networking/confidentialhttp/v1alpha/client_sdk_gen.d.ts +32 -0
- package/dist/generated-sdk/capabilities/networking/confidentialhttp/v1alpha/client_sdk_gen.js +71 -0
- package/dist/pb.d.ts +1 -0
- package/dist/pb.js +1 -0
- package/dist/sdk/cre/index.d.ts +3 -0
- package/dist/sdk/cre/index.js +4 -0
- package/dist/sdk/impl/runtime-impl.d.ts +70 -1
- package/dist/sdk/impl/runtime-impl.js +183 -110
- package/dist/sdk/runtime.d.ts +26 -8
- package/dist/sdk/utils/capabilities/blockchain/blockchain-helpers.d.ts +43 -0
- package/dist/sdk/utils/capabilities/blockchain/blockchain-helpers.js +51 -1
- package/dist/sdk/utils/capabilities/http/http-helpers.d.ts +5 -4
- package/dist/sdk/utils/chain-selectors/{getNetwork.d.ts → get-network.d.ts} +2 -8
- package/dist/sdk/utils/chain-selectors/get-network.js +18 -0
- package/dist/sdk/utils/chain-selectors/index.d.ts +2 -2
- package/dist/sdk/utils/chain-selectors/index.js +2 -2
- package/dist/sdk/utils/chain-selectors/network-lookup.d.ts +31 -0
- package/dist/sdk/utils/chain-selectors/network-lookup.js +82 -0
- package/dist/sdk/utils/hex-utils.d.ts +17 -0
- package/dist/sdk/utils/hex-utils.js +29 -0
- package/dist/sdk/utils/index.d.ts +1 -0
- package/dist/sdk/utils/index.js +1 -0
- package/package.json +2 -2
- package/scripts/src/generate-sdks.ts +3 -0
- package/dist/sdk/utils/chain-selectors/getNetwork.js +0 -77
- /package/dist/sdk/utils/chain-selectors/{getAllNetworks.d.ts → get-all-networks.d.ts} +0 -0
- /package/dist/sdk/utils/chain-selectors/{getAllNetworks.js → get-all-networks.js} +0 -0
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Message } from '@bufbuild/protobuf';
|
|
2
2
|
import type { GenEnum, GenFile, GenMessage, GenService } from '@bufbuild/protobuf/codegenv2';
|
|
3
|
-
import type { EmptySchema } from '@bufbuild/protobuf/wkt';
|
|
4
3
|
import type { ReportResponse, ReportResponseJson } from '../../../../sdk/v1alpha/sdk_pb';
|
|
5
4
|
import type { BigInt, BigIntJson } from '../../../../values/v1/values_pb';
|
|
6
5
|
/**
|
|
@@ -1114,181 +1113,6 @@ export type HeaderJson = {
|
|
|
1114
1113
|
export declare const HeaderSchema: GenMessage<Header, {
|
|
1115
1114
|
jsonType: HeaderJson;
|
|
1116
1115
|
}>;
|
|
1117
|
-
/**
|
|
1118
|
-
* @generated from message capabilities.blockchain.evm.v1alpha.RegisterLogTrackingRequest
|
|
1119
|
-
*/
|
|
1120
|
-
export type RegisterLogTrackingRequest = Message<'capabilities.blockchain.evm.v1alpha.RegisterLogTrackingRequest'> & {
|
|
1121
|
-
/**
|
|
1122
|
-
* @generated from field: capabilities.blockchain.evm.v1alpha.LPFilter filter = 1;
|
|
1123
|
-
*/
|
|
1124
|
-
filter?: LPFilter;
|
|
1125
|
-
};
|
|
1126
|
-
/**
|
|
1127
|
-
* @generated from message capabilities.blockchain.evm.v1alpha.RegisterLogTrackingRequest
|
|
1128
|
-
*/
|
|
1129
|
-
export type RegisterLogTrackingRequestJson = {
|
|
1130
|
-
/**
|
|
1131
|
-
* @generated from field: capabilities.blockchain.evm.v1alpha.LPFilter filter = 1;
|
|
1132
|
-
*/
|
|
1133
|
-
filter?: LPFilterJson;
|
|
1134
|
-
};
|
|
1135
|
-
/**
|
|
1136
|
-
* Describes the message capabilities.blockchain.evm.v1alpha.RegisterLogTrackingRequest.
|
|
1137
|
-
* Use `create(RegisterLogTrackingRequestSchema)` to create a new message.
|
|
1138
|
-
*/
|
|
1139
|
-
export declare const RegisterLogTrackingRequestSchema: GenMessage<RegisterLogTrackingRequest, {
|
|
1140
|
-
jsonType: RegisterLogTrackingRequestJson;
|
|
1141
|
-
}>;
|
|
1142
|
-
/**
|
|
1143
|
-
* @generated from message capabilities.blockchain.evm.v1alpha.LPFilter
|
|
1144
|
-
*/
|
|
1145
|
-
export type LPFilter = Message<'capabilities.blockchain.evm.v1alpha.LPFilter'> & {
|
|
1146
|
-
/**
|
|
1147
|
-
* maximum number of logs to retain ( 0 = unlimited )
|
|
1148
|
-
*
|
|
1149
|
-
* @generated from field: uint64 max_logs_kept = 1 [jstype = JS_NORMAL];
|
|
1150
|
-
*/
|
|
1151
|
-
maxLogsKept: bigint;
|
|
1152
|
-
/**
|
|
1153
|
-
* maximum amount of time to retain logs in seconds
|
|
1154
|
-
*
|
|
1155
|
-
* @generated from field: int64 retention_time = 2 [jstype = JS_NORMAL];
|
|
1156
|
-
*/
|
|
1157
|
-
retentionTime: bigint;
|
|
1158
|
-
/**
|
|
1159
|
-
* rate limit ( maximum # of logs per block, 0 = unlimited )
|
|
1160
|
-
*
|
|
1161
|
-
* @generated from field: uint64 logs_per_block = 3 [jstype = JS_NORMAL];
|
|
1162
|
-
*/
|
|
1163
|
-
logsPerBlock: bigint;
|
|
1164
|
-
/**
|
|
1165
|
-
* filter name, has to persist for removing filter
|
|
1166
|
-
*
|
|
1167
|
-
* @generated from field: string name = 4;
|
|
1168
|
-
*/
|
|
1169
|
-
name: string;
|
|
1170
|
-
/**
|
|
1171
|
-
* list of addresses to include in evm address [20]byte fix-sized array format
|
|
1172
|
-
*
|
|
1173
|
-
* @generated from field: repeated bytes addresses = 5;
|
|
1174
|
-
*/
|
|
1175
|
-
addresses: Uint8Array[];
|
|
1176
|
-
/**
|
|
1177
|
-
* list of possible signatures (aka topic1), in [32]byte fix-sized array format
|
|
1178
|
-
*
|
|
1179
|
-
* @generated from field: repeated bytes event_sigs = 6;
|
|
1180
|
-
*/
|
|
1181
|
-
eventSigs: Uint8Array[];
|
|
1182
|
-
/**
|
|
1183
|
-
* list of possible values for topic2, in [32]byte fix-sized array format
|
|
1184
|
-
*
|
|
1185
|
-
* @generated from field: repeated bytes topic2 = 7;
|
|
1186
|
-
*/
|
|
1187
|
-
topic2: Uint8Array[];
|
|
1188
|
-
/**
|
|
1189
|
-
* list of possible values for topic3, in [32]byte fix-sized array format
|
|
1190
|
-
*
|
|
1191
|
-
* @generated from field: repeated bytes topic3 = 8;
|
|
1192
|
-
*/
|
|
1193
|
-
topic3: Uint8Array[];
|
|
1194
|
-
/**
|
|
1195
|
-
* list of possible values for topic4, in [32]byte fix-sized array format
|
|
1196
|
-
*
|
|
1197
|
-
* @generated from field: repeated bytes topic4 = 9;
|
|
1198
|
-
*/
|
|
1199
|
-
topic4: Uint8Array[];
|
|
1200
|
-
};
|
|
1201
|
-
/**
|
|
1202
|
-
* @generated from message capabilities.blockchain.evm.v1alpha.LPFilter
|
|
1203
|
-
*/
|
|
1204
|
-
export type LPFilterJson = {
|
|
1205
|
-
/**
|
|
1206
|
-
* maximum number of logs to retain ( 0 = unlimited )
|
|
1207
|
-
*
|
|
1208
|
-
* @generated from field: uint64 max_logs_kept = 1 [jstype = JS_NORMAL];
|
|
1209
|
-
*/
|
|
1210
|
-
maxLogsKept?: string;
|
|
1211
|
-
/**
|
|
1212
|
-
* maximum amount of time to retain logs in seconds
|
|
1213
|
-
*
|
|
1214
|
-
* @generated from field: int64 retention_time = 2 [jstype = JS_NORMAL];
|
|
1215
|
-
*/
|
|
1216
|
-
retentionTime?: string;
|
|
1217
|
-
/**
|
|
1218
|
-
* rate limit ( maximum # of logs per block, 0 = unlimited )
|
|
1219
|
-
*
|
|
1220
|
-
* @generated from field: uint64 logs_per_block = 3 [jstype = JS_NORMAL];
|
|
1221
|
-
*/
|
|
1222
|
-
logsPerBlock?: string;
|
|
1223
|
-
/**
|
|
1224
|
-
* filter name, has to persist for removing filter
|
|
1225
|
-
*
|
|
1226
|
-
* @generated from field: string name = 4;
|
|
1227
|
-
*/
|
|
1228
|
-
name?: string;
|
|
1229
|
-
/**
|
|
1230
|
-
* list of addresses to include in evm address [20]byte fix-sized array format
|
|
1231
|
-
*
|
|
1232
|
-
* @generated from field: repeated bytes addresses = 5;
|
|
1233
|
-
*/
|
|
1234
|
-
addresses?: string[];
|
|
1235
|
-
/**
|
|
1236
|
-
* list of possible signatures (aka topic1), in [32]byte fix-sized array format
|
|
1237
|
-
*
|
|
1238
|
-
* @generated from field: repeated bytes event_sigs = 6;
|
|
1239
|
-
*/
|
|
1240
|
-
eventSigs?: string[];
|
|
1241
|
-
/**
|
|
1242
|
-
* list of possible values for topic2, in [32]byte fix-sized array format
|
|
1243
|
-
*
|
|
1244
|
-
* @generated from field: repeated bytes topic2 = 7;
|
|
1245
|
-
*/
|
|
1246
|
-
topic2?: string[];
|
|
1247
|
-
/**
|
|
1248
|
-
* list of possible values for topic3, in [32]byte fix-sized array format
|
|
1249
|
-
*
|
|
1250
|
-
* @generated from field: repeated bytes topic3 = 8;
|
|
1251
|
-
*/
|
|
1252
|
-
topic3?: string[];
|
|
1253
|
-
/**
|
|
1254
|
-
* list of possible values for topic4, in [32]byte fix-sized array format
|
|
1255
|
-
*
|
|
1256
|
-
* @generated from field: repeated bytes topic4 = 9;
|
|
1257
|
-
*/
|
|
1258
|
-
topic4?: string[];
|
|
1259
|
-
};
|
|
1260
|
-
/**
|
|
1261
|
-
* Describes the message capabilities.blockchain.evm.v1alpha.LPFilter.
|
|
1262
|
-
* Use `create(LPFilterSchema)` to create a new message.
|
|
1263
|
-
*/
|
|
1264
|
-
export declare const LPFilterSchema: GenMessage<LPFilter, {
|
|
1265
|
-
jsonType: LPFilterJson;
|
|
1266
|
-
}>;
|
|
1267
|
-
/**
|
|
1268
|
-
* @generated from message capabilities.blockchain.evm.v1alpha.UnregisterLogTrackingRequest
|
|
1269
|
-
*/
|
|
1270
|
-
export type UnregisterLogTrackingRequest = Message<'capabilities.blockchain.evm.v1alpha.UnregisterLogTrackingRequest'> & {
|
|
1271
|
-
/**
|
|
1272
|
-
* @generated from field: string filter_name = 1;
|
|
1273
|
-
*/
|
|
1274
|
-
filterName: string;
|
|
1275
|
-
};
|
|
1276
|
-
/**
|
|
1277
|
-
* @generated from message capabilities.blockchain.evm.v1alpha.UnregisterLogTrackingRequest
|
|
1278
|
-
*/
|
|
1279
|
-
export type UnregisterLogTrackingRequestJson = {
|
|
1280
|
-
/**
|
|
1281
|
-
* @generated from field: string filter_name = 1;
|
|
1282
|
-
*/
|
|
1283
|
-
filterName?: string;
|
|
1284
|
-
};
|
|
1285
|
-
/**
|
|
1286
|
-
* Describes the message capabilities.blockchain.evm.v1alpha.UnregisterLogTrackingRequest.
|
|
1287
|
-
* Use `create(UnregisterLogTrackingRequestSchema)` to create a new message.
|
|
1288
|
-
*/
|
|
1289
|
-
export declare const UnregisterLogTrackingRequestSchema: GenMessage<UnregisterLogTrackingRequest, {
|
|
1290
|
-
jsonType: UnregisterLogTrackingRequestJson;
|
|
1291
|
-
}>;
|
|
1292
1116
|
/**
|
|
1293
1117
|
* @generated from message capabilities.blockchain.evm.v1alpha.WriteReportRequest
|
|
1294
1118
|
*/
|
|
@@ -1543,22 +1367,6 @@ export declare const Client: GenService<{
|
|
|
1543
1367
|
input: typeof HeaderByNumberRequestSchema;
|
|
1544
1368
|
output: typeof HeaderByNumberReplySchema;
|
|
1545
1369
|
};
|
|
1546
|
-
/**
|
|
1547
|
-
* @generated from rpc capabilities.blockchain.evm.v1alpha.Client.RegisterLogTracking
|
|
1548
|
-
*/
|
|
1549
|
-
registerLogTracking: {
|
|
1550
|
-
methodKind: 'unary';
|
|
1551
|
-
input: typeof RegisterLogTrackingRequestSchema;
|
|
1552
|
-
output: typeof EmptySchema;
|
|
1553
|
-
};
|
|
1554
|
-
/**
|
|
1555
|
-
* @generated from rpc capabilities.blockchain.evm.v1alpha.Client.UnregisterLogTracking
|
|
1556
|
-
*/
|
|
1557
|
-
unregisterLogTracking: {
|
|
1558
|
-
methodKind: 'unary';
|
|
1559
|
-
input: typeof UnregisterLogTrackingRequestSchema;
|
|
1560
|
-
output: typeof EmptySchema;
|
|
1561
|
-
};
|
|
1562
1370
|
/**
|
|
1563
1371
|
* @generated from rpc capabilities.blockchain.evm.v1alpha.Client.LogTrigger
|
|
1564
1372
|
*/
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
// @generated from file capabilities/blockchain/evm/v1alpha/client.proto (package capabilities.blockchain.evm.v1alpha, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { enumDesc, fileDesc, messageDesc, serviceDesc } from '@bufbuild/protobuf/codegenv2';
|
|
5
|
-
import { file_google_protobuf_empty } from '@bufbuild/protobuf/wkt';
|
|
6
5
|
import { file_sdk_v1alpha_sdk } from '../../../../sdk/v1alpha/sdk_pb';
|
|
7
6
|
import { file_tools_generator_v1alpha_cre_metadata } from '../../../../tools/generator/v1alpha/cre_metadata_pb';
|
|
8
7
|
import { file_values_v1_values } from '../../../../values/v1/values_pb';
|
|
@@ -11,12 +10,7 @@ import { file_values_v1_values } from '../../../../values/v1/values_pb';
|
|
|
11
10
|
*/
|
|
12
11
|
export const file_capabilities_blockchain_evm_v1alpha_client =
|
|
13
12
|
/*@__PURE__*/
|
|
14
|
-
fileDesc('
|
|
15
|
-
file_google_protobuf_empty,
|
|
16
|
-
file_sdk_v1alpha_sdk,
|
|
17
|
-
file_tools_generator_v1alpha_cre_metadata,
|
|
18
|
-
file_values_v1_values,
|
|
19
|
-
]);
|
|
13
|
+
fileDesc('CjBjYXBhYmlsaXRpZXMvYmxvY2tjaGFpbi9ldm0vdjFhbHBoYS9jbGllbnQucHJvdG8SI2NhcGFiaWxpdGllcy5ibG9ja2NoYWluLmV2bS52MWFscGhhIh0KC1RvcGljVmFsdWVzEg4KBnZhbHVlcxgBIAMoDCK4AQoXRmlsdGVyTG9nVHJpZ2dlclJlcXVlc3QSEQoJYWRkcmVzc2VzGAEgAygMEkAKBnRvcGljcxgCIAMoCzIwLmNhcGFiaWxpdGllcy5ibG9ja2NoYWluLmV2bS52MWFscGhhLlRvcGljVmFsdWVzEkgKCmNvbmZpZGVuY2UYAyABKA4yNC5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5Db25maWRlbmNlTGV2ZWwiegoTQ2FsbENvbnRyYWN0UmVxdWVzdBI6CgRjYWxsGAEgASgLMiwuY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuQ2FsbE1zZxInCgxibG9ja19udW1iZXIYAiABKAsyES52YWx1ZXMudjEuQmlnSW50IiEKEUNhbGxDb250cmFjdFJlcGx5EgwKBGRhdGEYASABKAwiWwoRRmlsdGVyTG9nc1JlcXVlc3QSRgoMZmlsdGVyX3F1ZXJ5GAEgASgLMjAuY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuRmlsdGVyUXVlcnkiSQoPRmlsdGVyTG9nc1JlcGx5EjYKBGxvZ3MYASADKAsyKC5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5Mb2cixwEKA0xvZxIPCgdhZGRyZXNzGAEgASgMEg4KBnRvcGljcxgCIAMoDBIPCgd0eF9oYXNoGAMgASgMEhIKCmJsb2NrX2hhc2gYBCABKAwSDAoEZGF0YRgFIAEoDBIRCglldmVudF9zaWcYBiABKAwSJwoMYmxvY2tfbnVtYmVyGAcgASgLMhEudmFsdWVzLnYxLkJpZ0ludBIQCgh0eF9pbmRleBgIIAEoDRINCgVpbmRleBgJIAEoDRIPCgdyZW1vdmVkGAogASgIIjEKB0NhbGxNc2cSDAoEZnJvbRgBIAEoDBIKCgJ0bxgCIAEoDBIMCgRkYXRhGAMgASgMIr0BCgtGaWx0ZXJRdWVyeRISCgpibG9ja19oYXNoGAEgASgMEiUKCmZyb21fYmxvY2sYAiABKAsyES52YWx1ZXMudjEuQmlnSW50EiMKCHRvX2Jsb2NrGAMgASgLMhEudmFsdWVzLnYxLkJpZ0ludBIRCglhZGRyZXNzZXMYBCADKAwSOwoGdG9waWNzGAUgAygLMisuY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuVG9waWNzIhcKBlRvcGljcxINCgV0b3BpYxgBIAMoDCJMChBCYWxhbmNlQXRSZXF1ZXN0Eg8KB2FjY291bnQYASABKAwSJwoMYmxvY2tfbnVtYmVyGAIgASgLMhEudmFsdWVzLnYxLkJpZ0ludCI0Cg5CYWxhbmNlQXRSZXBseRIiCgdiYWxhbmNlGAEgASgLMhEudmFsdWVzLnYxLkJpZ0ludCJPChJFc3RpbWF0ZUdhc1JlcXVlc3QSOQoDbXNnGAEgASgLMiwuY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuQ2FsbE1zZyIjChBFc3RpbWF0ZUdhc1JlcGx5Eg8KA2dhcxgBIAEoBEICMAAiKwobR2V0VHJhbnNhY3Rpb25CeUhhc2hSZXF1ZXN0EgwKBGhhc2gYASABKAwiYgoZR2V0VHJhbnNhY3Rpb25CeUhhc2hSZXBseRJFCgt0cmFuc2FjdGlvbhgBIAEoCzIwLmNhcGFiaWxpdGllcy5ibG9ja2NoYWluLmV2bS52MWFscGhhLlRyYW5zYWN0aW9uIqEBCgtUcmFuc2FjdGlvbhIRCgVub25jZRgBIAEoBEICMAASDwoDZ2FzGAIgASgEQgIwABIKCgJ0bxgDIAEoDBIMCgRkYXRhGAQgASgMEgwKBGhhc2gYBSABKAwSIAoFdmFsdWUYBiABKAsyES52YWx1ZXMudjEuQmlnSW50EiQKCWdhc19wcmljZRgHIAEoCzIRLnZhbHVlcy52MS5CaWdJbnQiLAocR2V0VHJhbnNhY3Rpb25SZWNlaXB0UmVxdWVzdBIMCgRoYXNoGAEgASgMIlsKGkdldFRyYW5zYWN0aW9uUmVjZWlwdFJlcGx5Ej0KB3JlY2VpcHQYASABKAsyLC5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5SZWNlaXB0IpkCCgdSZWNlaXB0EhIKBnN0YXR1cxgBIAEoBEICMAASFAoIZ2FzX3VzZWQYAiABKARCAjAAEhQKCHR4X2luZGV4GAMgASgEQgIwABISCgpibG9ja19oYXNoGAQgASgMEjYKBGxvZ3MYBiADKAsyKC5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5Mb2cSDwoHdHhfaGFzaBgHIAEoDBIuChNlZmZlY3RpdmVfZ2FzX3ByaWNlGAggASgLMhEudmFsdWVzLnYxLkJpZ0ludBInCgxibG9ja19udW1iZXIYCSABKAsyES52YWx1ZXMudjEuQmlnSW50EhgKEGNvbnRyYWN0X2FkZHJlc3MYCiABKAwiQAoVSGVhZGVyQnlOdW1iZXJSZXF1ZXN0EicKDGJsb2NrX251bWJlchgBIAEoCzIRLnZhbHVlcy52MS5CaWdJbnQiUgoTSGVhZGVyQnlOdW1iZXJSZXBseRI7CgZoZWFkZXIYASABKAsyKy5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5IZWFkZXIiawoGSGVhZGVyEhUKCXRpbWVzdGFtcBgBIAEoBEICMAASJwoMYmxvY2tfbnVtYmVyGAIgASgLMhEudmFsdWVzLnYxLkJpZ0ludBIMCgRoYXNoGAMgASgMEhMKC3BhcmVudF9oYXNoGAQgASgMIqsBChJXcml0ZVJlcG9ydFJlcXVlc3QSEAoIcmVjZWl2ZXIYASABKAwSKwoGcmVwb3J0GAIgASgLMhsuc2RrLnYxYWxwaGEuUmVwb3J0UmVzcG9uc2USRwoKZ2FzX2NvbmZpZxgDIAEoCzIuLmNhcGFiaWxpdGllcy5ibG9ja2NoYWluLmV2bS52MWFscGhhLkdhc0NvbmZpZ0gAiAEBQg0KC19nYXNfY29uZmlnIiIKCUdhc0NvbmZpZxIVCglnYXNfbGltaXQYASABKARCAjAAIocDChBXcml0ZVJlcG9ydFJlcGx5EkAKCXR4X3N0YXR1cxgBIAEoDjItLmNhcGFiaWxpdGllcy5ibG9ja2NoYWluLmV2bS52MWFscGhhLlR4U3RhdHVzEnUKInJlY2VpdmVyX2NvbnRyYWN0X2V4ZWN1dGlvbl9zdGF0dXMYAiABKA4yRC5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5SZWNlaXZlckNvbnRyYWN0RXhlY3V0aW9uU3RhdHVzSACIAQESFAoHdHhfaGFzaBgDIAEoDEgBiAEBEi8KD3RyYW5zYWN0aW9uX2ZlZRgEIAEoCzIRLnZhbHVlcy52MS5CaWdJbnRIAogBARIaCg1lcnJvcl9tZXNzYWdlGAUgASgJSAOIAQFCJQojX3JlY2VpdmVyX2NvbnRyYWN0X2V4ZWN1dGlvbl9zdGF0dXNCCgoIX3R4X2hhc2hCEgoQX3RyYW5zYWN0aW9uX2ZlZUIQCg5fZXJyb3JfbWVzc2FnZSppCg9Db25maWRlbmNlTGV2ZWwSGQoVQ09ORklERU5DRV9MRVZFTF9TQUZFEAASGwoXQ09ORklERU5DRV9MRVZFTF9MQVRFU1QQARIeChpDT05GSURFTkNFX0xFVkVMX0ZJTkFMSVpFRBACKoIBCh9SZWNlaXZlckNvbnRyYWN0RXhlY3V0aW9uU3RhdHVzEi4KKlJFQ0VJVkVSX0NPTlRSQUNUX0VYRUNVVElPTl9TVEFUVVNfU1VDQ0VTUxAAEi8KK1JFQ0VJVkVSX0NPTlRSQUNUX0VYRUNVVElPTl9TVEFUVVNfUkVWRVJURUQQASpOCghUeFN0YXR1cxITCg9UWF9TVEFUVVNfRkFUQUwQABIWChJUWF9TVEFUVVNfUkVWRVJURUQQARIVChFUWF9TVEFUVVNfU1VDQ0VTUxACMpUPCgZDbGllbnQSgAEKDENhbGxDb250cmFjdBI4LmNhcGFiaWxpdGllcy5ibG9ja2NoYWluLmV2bS52MWFscGhhLkNhbGxDb250cmFjdFJlcXVlc3QaNi5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5DYWxsQ29udHJhY3RSZXBseRJ6CgpGaWx0ZXJMb2dzEjYuY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuRmlsdGVyTG9nc1JlcXVlc3QaNC5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5GaWx0ZXJMb2dzUmVwbHkSdwoJQmFsYW5jZUF0EjUuY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuQmFsYW5jZUF0UmVxdWVzdBozLmNhcGFiaWxpdGllcy5ibG9ja2NoYWluLmV2bS52MWFscGhhLkJhbGFuY2VBdFJlcGx5En0KC0VzdGltYXRlR2FzEjcuY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuRXN0aW1hdGVHYXNSZXF1ZXN0GjUuY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuRXN0aW1hdGVHYXNSZXBseRKYAQoUR2V0VHJhbnNhY3Rpb25CeUhhc2gSQC5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5HZXRUcmFuc2FjdGlvbkJ5SGFzaFJlcXVlc3QaPi5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5HZXRUcmFuc2FjdGlvbkJ5SGFzaFJlcGx5EpsBChVHZXRUcmFuc2FjdGlvblJlY2VpcHQSQS5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5HZXRUcmFuc2FjdGlvblJlY2VpcHRSZXF1ZXN0Gj8uY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuR2V0VHJhbnNhY3Rpb25SZWNlaXB0UmVwbHkShgEKDkhlYWRlckJ5TnVtYmVyEjouY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuSGVhZGVyQnlOdW1iZXJSZXF1ZXN0GjguY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuSGVhZGVyQnlOdW1iZXJSZXBseRJ2CgpMb2dUcmlnZ2VyEjwuY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGEuRmlsdGVyTG9nVHJpZ2dlclJlcXVlc3QaKC5jYXBhYmlsaXRpZXMuYmxvY2tjaGFpbi5ldm0udjFhbHBoYS5Mb2cwARJ9CgtXcml0ZVJlcG9ydBI3LmNhcGFiaWxpdGllcy5ibG9ja2NoYWluLmV2bS52MWFscGhhLldyaXRlUmVwb3J0UmVxdWVzdBo1LmNhcGFiaWxpdGllcy5ibG9ja2NoYWluLmV2bS52MWFscGhhLldyaXRlUmVwb3J0UmVwbHka2gWCtRjVBQgBEglldm1AMS4wLjAaxQUKDUNoYWluU2VsZWN0b3ISswUSsAUKHQoRYXZhbGFuY2hlLW1haW5uZXQQ1eeKwOHVmKRZCiMKFmF2YWxhbmNoZS10ZXN0bmV0LWZ1amkQm/n8kKLjqPjMAQovCiNiaW5hbmNlX3NtYXJ0X2NoYWluLW1haW5uZXQtb3BibmItMRCJrY/vk8bXuwYKMAojYmluYW5jZV9zbWFydF9jaGFpbi10ZXN0bmV0LW9wYm5iLTEQjvWFkcGDj5y4AQocChBldGhlcmV1bS1tYWlubmV0EJX28eTPsqbCRQonChtldGhlcmV1bS1tYWlubmV0LWFyYml0cnVtLTEQxOiNzY6boddECiQKF2V0aGVyZXVtLW1haW5uZXQtYmFzZS0xEIL/q6L+uZDT3QEKJwobZXRoZXJldW0tbWFpbm5ldC1vcHRpbWlzbS0xELiVj8P3/tDpMwolChlldGhlcmV1bS1tYWlubmV0LXprc3luYy0xEJTul9nttLHXFQolChhldGhlcmV1bS10ZXN0bmV0LXNlcG9saWEQ2bXkzvzJ7qDeAQovCiNldGhlcmV1bS10ZXN0bmV0LXNlcG9saWEtYXJiaXRydW0tMRDqzu7/6raEozAKLAofZXRoZXJldW0tdGVzdG5ldC1zZXBvbGlhLWJhc2UtMRC4yrnv9pCuyI8BCi8KI2V0aGVyZXVtLXRlc3RuZXQtc2Vwb2xpYS1vcHRpbWlzbS0xEJ+GxaG+2MPASAotCiFldGhlcmV1bS10ZXN0bmV0LXNlcG9saWEtemtzeW5jLTEQt8H8/fLEgN5fChsKD3BvbHlnb24tbWFpbm5ldBCxq+TwmpKGnTgKIQoUcG9seWdvbi10ZXN0bmV0LWFtb3kQzY/W3/HHkPrhAQokChhwcml2YXRlLXRlc3RuZXQtYW5kZXNpdGUQ1KaYpcGP3PxfQuUBCidjb20uY2FwYWJpbGl0aWVzLmJsb2NrY2hhaW4uZXZtLnYxYWxwaGFCC0NsaWVudFByb3RvUAGiAgNDQkWqAiNDYXBhYmlsaXRpZXMuQmxvY2tjaGFpbi5Fdm0uVjFhbHBoYcoCI0NhcGFiaWxpdGllc1xCbG9ja2NoYWluXEV2bVxWMWFscGhh4gIvQ2FwYWJpbGl0aWVzXEJsb2NrY2hhaW5cRXZtXFYxYWxwaGFcR1BCTWV0YWRhdGHqAiZDYXBhYmlsaXRpZXM6OkJsb2NrY2hhaW46OkV2bTo6VjFhbHBoYWIGcHJvdG8z', [file_sdk_v1alpha_sdk, file_tools_generator_v1alpha_cre_metadata, file_values_v1_values]);
|
|
20
14
|
/**
|
|
21
15
|
* Describes the message capabilities.blockchain.evm.v1alpha.TopicValues.
|
|
22
16
|
* Use `create(TopicValuesSchema)` to create a new message.
|
|
@@ -152,40 +146,23 @@ export const HeaderByNumberReplySchema = /*@__PURE__*/ messageDesc(file_capabili
|
|
|
152
146
|
export const HeaderSchema =
|
|
153
147
|
/*@__PURE__*/
|
|
154
148
|
messageDesc(file_capabilities_blockchain_evm_v1alpha_client, 22);
|
|
155
|
-
/**
|
|
156
|
-
* Describes the message capabilities.blockchain.evm.v1alpha.RegisterLogTrackingRequest.
|
|
157
|
-
* Use `create(RegisterLogTrackingRequestSchema)` to create a new message.
|
|
158
|
-
*/
|
|
159
|
-
export const RegisterLogTrackingRequestSchema = /*@__PURE__*/ messageDesc(file_capabilities_blockchain_evm_v1alpha_client, 23);
|
|
160
|
-
/**
|
|
161
|
-
* Describes the message capabilities.blockchain.evm.v1alpha.LPFilter.
|
|
162
|
-
* Use `create(LPFilterSchema)` to create a new message.
|
|
163
|
-
*/
|
|
164
|
-
export const LPFilterSchema =
|
|
165
|
-
/*@__PURE__*/
|
|
166
|
-
messageDesc(file_capabilities_blockchain_evm_v1alpha_client, 24);
|
|
167
|
-
/**
|
|
168
|
-
* Describes the message capabilities.blockchain.evm.v1alpha.UnregisterLogTrackingRequest.
|
|
169
|
-
* Use `create(UnregisterLogTrackingRequestSchema)` to create a new message.
|
|
170
|
-
*/
|
|
171
|
-
export const UnregisterLogTrackingRequestSchema = /*@__PURE__*/ messageDesc(file_capabilities_blockchain_evm_v1alpha_client, 25);
|
|
172
149
|
/**
|
|
173
150
|
* Describes the message capabilities.blockchain.evm.v1alpha.WriteReportRequest.
|
|
174
151
|
* Use `create(WriteReportRequestSchema)` to create a new message.
|
|
175
152
|
*/
|
|
176
|
-
export const WriteReportRequestSchema = /*@__PURE__*/ messageDesc(file_capabilities_blockchain_evm_v1alpha_client,
|
|
153
|
+
export const WriteReportRequestSchema = /*@__PURE__*/ messageDesc(file_capabilities_blockchain_evm_v1alpha_client, 23);
|
|
177
154
|
/**
|
|
178
155
|
* Describes the message capabilities.blockchain.evm.v1alpha.GasConfig.
|
|
179
156
|
* Use `create(GasConfigSchema)` to create a new message.
|
|
180
157
|
*/
|
|
181
158
|
export const GasConfigSchema =
|
|
182
159
|
/*@__PURE__*/
|
|
183
|
-
messageDesc(file_capabilities_blockchain_evm_v1alpha_client,
|
|
160
|
+
messageDesc(file_capabilities_blockchain_evm_v1alpha_client, 24);
|
|
184
161
|
/**
|
|
185
162
|
* Describes the message capabilities.blockchain.evm.v1alpha.WriteReportReply.
|
|
186
163
|
* Use `create(WriteReportReplySchema)` to create a new message.
|
|
187
164
|
*/
|
|
188
|
-
export const WriteReportReplySchema = /*@__PURE__*/ messageDesc(file_capabilities_blockchain_evm_v1alpha_client,
|
|
165
|
+
export const WriteReportReplySchema = /*@__PURE__*/ messageDesc(file_capabilities_blockchain_evm_v1alpha_client, 25);
|
|
189
166
|
/**
|
|
190
167
|
* @generated from enum capabilities.blockchain.evm.v1alpha.ConfidenceLevel
|
|
191
168
|
*/
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
import type { Message } from '@bufbuild/protobuf';
|
|
2
|
+
import type { GenFile, GenMessage, GenService } from '@bufbuild/protobuf/codegenv2';
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file capabilities/networking/confidentialhttp/v1alpha/client.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_capabilities_networking_confidentialhttp_v1alpha_client: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.SecretIdentifier
|
|
9
|
+
*/
|
|
10
|
+
export type SecretIdentifier = Message<'capabilities.networking.confidentialhttp.v1alpha.SecretIdentifier'> & {
|
|
11
|
+
/**
|
|
12
|
+
* @generated from field: string key = 1;
|
|
13
|
+
*/
|
|
14
|
+
key: string;
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: string namespace = 2;
|
|
17
|
+
*/
|
|
18
|
+
namespace: string;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: optional string owner = 3;
|
|
21
|
+
*/
|
|
22
|
+
owner?: string;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.SecretIdentifier
|
|
26
|
+
*/
|
|
27
|
+
export type SecretIdentifierJson = {
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: string key = 1;
|
|
30
|
+
*/
|
|
31
|
+
key?: string;
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: string namespace = 2;
|
|
34
|
+
*/
|
|
35
|
+
namespace?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @generated from field: optional string owner = 3;
|
|
38
|
+
*/
|
|
39
|
+
owner?: string;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.SecretIdentifier.
|
|
43
|
+
* Use `create(SecretIdentifierSchema)` to create a new message.
|
|
44
|
+
*/
|
|
45
|
+
export declare const SecretIdentifierSchema: GenMessage<SecretIdentifier, {
|
|
46
|
+
jsonType: SecretIdentifierJson;
|
|
47
|
+
}>;
|
|
48
|
+
/**
|
|
49
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.Request
|
|
50
|
+
*/
|
|
51
|
+
export type Request = Message<'capabilities.networking.confidentialhttp.v1alpha.Request'> & {
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: string url = 1;
|
|
54
|
+
*/
|
|
55
|
+
url: string;
|
|
56
|
+
/**
|
|
57
|
+
* @generated from field: string method = 2;
|
|
58
|
+
*/
|
|
59
|
+
method: string;
|
|
60
|
+
/**
|
|
61
|
+
* @generated from field: string body = 3;
|
|
62
|
+
*/
|
|
63
|
+
body: string;
|
|
64
|
+
/**
|
|
65
|
+
* @generated from field: repeated string headers = 4;
|
|
66
|
+
*/
|
|
67
|
+
headers: string[];
|
|
68
|
+
/**
|
|
69
|
+
* @generated from field: map<string, string> public_template_values = 5;
|
|
70
|
+
*/
|
|
71
|
+
publicTemplateValues: {
|
|
72
|
+
[key: string]: string;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: bytes custom_cert_bundle = 6;
|
|
76
|
+
*/
|
|
77
|
+
customCertBundle: Uint8Array;
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.Request
|
|
81
|
+
*/
|
|
82
|
+
export type RequestJson = {
|
|
83
|
+
/**
|
|
84
|
+
* @generated from field: string url = 1;
|
|
85
|
+
*/
|
|
86
|
+
url?: string;
|
|
87
|
+
/**
|
|
88
|
+
* @generated from field: string method = 2;
|
|
89
|
+
*/
|
|
90
|
+
method?: string;
|
|
91
|
+
/**
|
|
92
|
+
* @generated from field: string body = 3;
|
|
93
|
+
*/
|
|
94
|
+
body?: string;
|
|
95
|
+
/**
|
|
96
|
+
* @generated from field: repeated string headers = 4;
|
|
97
|
+
*/
|
|
98
|
+
headers?: string[];
|
|
99
|
+
/**
|
|
100
|
+
* @generated from field: map<string, string> public_template_values = 5;
|
|
101
|
+
*/
|
|
102
|
+
publicTemplateValues?: {
|
|
103
|
+
[key: string]: string;
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* @generated from field: bytes custom_cert_bundle = 6;
|
|
107
|
+
*/
|
|
108
|
+
customCertBundle?: string;
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.Request.
|
|
112
|
+
* Use `create(RequestSchema)` to create a new message.
|
|
113
|
+
*/
|
|
114
|
+
export declare const RequestSchema: GenMessage<Request, {
|
|
115
|
+
jsonType: RequestJson;
|
|
116
|
+
}>;
|
|
117
|
+
/**
|
|
118
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.ResponseTemplate
|
|
119
|
+
*/
|
|
120
|
+
export type ResponseTemplate = Message<'capabilities.networking.confidentialhttp.v1alpha.ResponseTemplate'> & {
|
|
121
|
+
/**
|
|
122
|
+
* @generated from field: int64 status_code = 1 [jstype = JS_NORMAL];
|
|
123
|
+
*/
|
|
124
|
+
statusCode: bigint;
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: bytes body = 2;
|
|
127
|
+
*/
|
|
128
|
+
body: Uint8Array;
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.ResponseTemplate
|
|
132
|
+
*/
|
|
133
|
+
export type ResponseTemplateJson = {
|
|
134
|
+
/**
|
|
135
|
+
* @generated from field: int64 status_code = 1 [jstype = JS_NORMAL];
|
|
136
|
+
*/
|
|
137
|
+
statusCode?: string;
|
|
138
|
+
/**
|
|
139
|
+
* @generated from field: bytes body = 2;
|
|
140
|
+
*/
|
|
141
|
+
body?: string;
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.ResponseTemplate.
|
|
145
|
+
* Use `create(ResponseTemplateSchema)` to create a new message.
|
|
146
|
+
*/
|
|
147
|
+
export declare const ResponseTemplateSchema: GenMessage<ResponseTemplate, {
|
|
148
|
+
jsonType: ResponseTemplateJson;
|
|
149
|
+
}>;
|
|
150
|
+
/**
|
|
151
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveRequestData
|
|
152
|
+
*/
|
|
153
|
+
export type HTTPEnclaveRequestData = Message<'capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveRequestData'> & {
|
|
154
|
+
/**
|
|
155
|
+
* @generated from field: repeated capabilities.networking.confidentialhttp.v1alpha.Request requests = 1;
|
|
156
|
+
*/
|
|
157
|
+
requests: Request[];
|
|
158
|
+
};
|
|
159
|
+
/**
|
|
160
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveRequestData
|
|
161
|
+
*/
|
|
162
|
+
export type HTTPEnclaveRequestDataJson = {
|
|
163
|
+
/**
|
|
164
|
+
* @generated from field: repeated capabilities.networking.confidentialhttp.v1alpha.Request requests = 1;
|
|
165
|
+
*/
|
|
166
|
+
requests?: RequestJson[];
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveRequestData.
|
|
170
|
+
* Use `create(HTTPEnclaveRequestDataSchema)` to create a new message.
|
|
171
|
+
*/
|
|
172
|
+
export declare const HTTPEnclaveRequestDataSchema: GenMessage<HTTPEnclaveRequestData, {
|
|
173
|
+
jsonType: HTTPEnclaveRequestDataJson;
|
|
174
|
+
}>;
|
|
175
|
+
/**
|
|
176
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.EnclaveActionInput
|
|
177
|
+
*/
|
|
178
|
+
export type EnclaveActionInput = Message<'capabilities.networking.confidentialhttp.v1alpha.EnclaveActionInput'> & {
|
|
179
|
+
/**
|
|
180
|
+
* @generated from field: repeated capabilities.networking.confidentialhttp.v1alpha.SecretIdentifier vault_don_secrets = 1;
|
|
181
|
+
*/
|
|
182
|
+
vaultDonSecrets: SecretIdentifier[];
|
|
183
|
+
/**
|
|
184
|
+
* @generated from field: capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveRequestData input = 2;
|
|
185
|
+
*/
|
|
186
|
+
input?: HTTPEnclaveRequestData;
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.EnclaveActionInput
|
|
190
|
+
*/
|
|
191
|
+
export type EnclaveActionInputJson = {
|
|
192
|
+
/**
|
|
193
|
+
* @generated from field: repeated capabilities.networking.confidentialhttp.v1alpha.SecretIdentifier vault_don_secrets = 1;
|
|
194
|
+
*/
|
|
195
|
+
vaultDonSecrets?: SecretIdentifierJson[];
|
|
196
|
+
/**
|
|
197
|
+
* @generated from field: capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveRequestData input = 2;
|
|
198
|
+
*/
|
|
199
|
+
input?: HTTPEnclaveRequestDataJson;
|
|
200
|
+
};
|
|
201
|
+
/**
|
|
202
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.EnclaveActionInput.
|
|
203
|
+
* Use `create(EnclaveActionInputSchema)` to create a new message.
|
|
204
|
+
*/
|
|
205
|
+
export declare const EnclaveActionInputSchema: GenMessage<EnclaveActionInput, {
|
|
206
|
+
jsonType: EnclaveActionInputJson;
|
|
207
|
+
}>;
|
|
208
|
+
/**
|
|
209
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveResponseData
|
|
210
|
+
*/
|
|
211
|
+
export type HTTPEnclaveResponseData = Message<'capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveResponseData'> & {
|
|
212
|
+
/**
|
|
213
|
+
* @generated from field: repeated capabilities.networking.confidentialhttp.v1alpha.ResponseTemplate responses = 1;
|
|
214
|
+
*/
|
|
215
|
+
responses: ResponseTemplate[];
|
|
216
|
+
};
|
|
217
|
+
/**
|
|
218
|
+
* @generated from message capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveResponseData
|
|
219
|
+
*/
|
|
220
|
+
export type HTTPEnclaveResponseDataJson = {
|
|
221
|
+
/**
|
|
222
|
+
* @generated from field: repeated capabilities.networking.confidentialhttp.v1alpha.ResponseTemplate responses = 1;
|
|
223
|
+
*/
|
|
224
|
+
responses?: ResponseTemplateJson[];
|
|
225
|
+
};
|
|
226
|
+
/**
|
|
227
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveResponseData.
|
|
228
|
+
* Use `create(HTTPEnclaveResponseDataSchema)` to create a new message.
|
|
229
|
+
*/
|
|
230
|
+
export declare const HTTPEnclaveResponseDataSchema: GenMessage<HTTPEnclaveResponseData, {
|
|
231
|
+
jsonType: HTTPEnclaveResponseDataJson;
|
|
232
|
+
}>;
|
|
233
|
+
/**
|
|
234
|
+
* @generated from service capabilities.networking.confidentialhttp.v1alpha.Client
|
|
235
|
+
*/
|
|
236
|
+
export declare const Client: GenService<{
|
|
237
|
+
/**
|
|
238
|
+
* @generated from rpc capabilities.networking.confidentialhttp.v1alpha.Client.SendRequests
|
|
239
|
+
*/
|
|
240
|
+
sendRequests: {
|
|
241
|
+
methodKind: 'unary';
|
|
242
|
+
input: typeof EnclaveActionInputSchema;
|
|
243
|
+
output: typeof HTTPEnclaveResponseDataSchema;
|
|
244
|
+
};
|
|
245
|
+
}>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.6.3 with parameter "target=ts,import_extension=none,json_types=true,keep_empty_files=false"
|
|
2
|
+
// @generated from file capabilities/networking/confidentialhttp/v1alpha/client.proto (package capabilities.networking.confidentialhttp.v1alpha, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc, serviceDesc } from '@bufbuild/protobuf/codegenv2';
|
|
5
|
+
import { file_tools_generator_v1alpha_cre_metadata } from '../../../../tools/generator/v1alpha/cre_metadata_pb';
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file capabilities/networking/confidentialhttp/v1alpha/client.proto.
|
|
8
|
+
*/
|
|
9
|
+
export const file_capabilities_networking_confidentialhttp_v1alpha_client =
|
|
10
|
+
/*@__PURE__*/
|
|
11
|
+
fileDesc('Cj1jYXBhYmlsaXRpZXMvbmV0d29ya2luZy9jb25maWRlbnRpYWxodHRwL3YxYWxwaGEvY2xpZW50LnByb3RvEjBjYXBhYmlsaXRpZXMubmV0d29ya2luZy5jb25maWRlbnRpYWxodHRwLnYxYWxwaGEiUAoQU2VjcmV0SWRlbnRpZmllchILCgNrZXkYASABKAkSEQoJbmFtZXNwYWNlGAIgASgJEhIKBW93bmVyGAMgASgJSACIAQFCCAoGX293bmVyIpMCCgdSZXF1ZXN0EgsKA3VybBgBIAEoCRIOCgZtZXRob2QYAiABKAkSDAoEYm9keRgDIAEoCRIPCgdoZWFkZXJzGAQgAygJEnMKFnB1YmxpY190ZW1wbGF0ZV92YWx1ZXMYBSADKAsyUy5jYXBhYmlsaXRpZXMubmV0d29ya2luZy5jb25maWRlbnRpYWxodHRwLnYxYWxwaGEuUmVxdWVzdC5QdWJsaWNUZW1wbGF0ZVZhbHVlc0VudHJ5EhoKEmN1c3RvbV9jZXJ0X2J1bmRsZRgGIAEoDBo7ChlQdWJsaWNUZW1wbGF0ZVZhbHVlc0VudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAEiOQoQUmVzcG9uc2VUZW1wbGF0ZRIXCgtzdGF0dXNfY29kZRgBIAEoA0ICMAASDAoEYm9keRgCIAEoDCJlChZIVFRQRW5jbGF2ZVJlcXVlc3REYXRhEksKCHJlcXVlc3RzGAEgAygLMjkuY2FwYWJpbGl0aWVzLm5ldHdvcmtpbmcuY29uZmlkZW50aWFsaHR0cC52MWFscGhhLlJlcXVlc3QizAEKEkVuY2xhdmVBY3Rpb25JbnB1dBJdChF2YXVsdF9kb25fc2VjcmV0cxgBIAMoCzJCLmNhcGFiaWxpdGllcy5uZXR3b3JraW5nLmNvbmZpZGVudGlhbGh0dHAudjFhbHBoYS5TZWNyZXRJZGVudGlmaWVyElcKBWlucHV0GAIgASgLMkguY2FwYWJpbGl0aWVzLm5ldHdvcmtpbmcuY29uZmlkZW50aWFsaHR0cC52MWFscGhhLkhUVFBFbmNsYXZlUmVxdWVzdERhdGEicAoXSFRUUEVuY2xhdmVSZXNwb25zZURhdGESVQoJcmVzcG9uc2VzGAEgAygLMkIuY2FwYWJpbGl0aWVzLm5ldHdvcmtpbmcuY29uZmlkZW50aWFsaHR0cC52MWFscGhhLlJlc3BvbnNlVGVtcGxhdGUy0QEKBkNsaWVudBKfAQoMU2VuZFJlcXVlc3RzEkQuY2FwYWJpbGl0aWVzLm5ldHdvcmtpbmcuY29uZmlkZW50aWFsaHR0cC52MWFscGhhLkVuY2xhdmVBY3Rpb25JbnB1dBpJLmNhcGFiaWxpdGllcy5uZXR3b3JraW5nLmNvbmZpZGVudGlhbGh0dHAudjFhbHBoYS5IVFRQRW5jbGF2ZVJlc3BvbnNlRGF0YRolgrUYIQgCEh1jb25maWRlbnRpYWwtaHR0cEAxLjAuMC1hbHBoYUKmAgo0Y29tLmNhcGFiaWxpdGllcy5uZXR3b3JraW5nLmNvbmZpZGVudGlhbGh0dHAudjFhbHBoYUILQ2xpZW50UHJvdG9QAaICA0NOQ6oCMENhcGFiaWxpdGllcy5OZXR3b3JraW5nLkNvbmZpZGVudGlhbGh0dHAuVjFhbHBoYcoCMENhcGFiaWxpdGllc1xOZXR3b3JraW5nXENvbmZpZGVudGlhbGh0dHBcVjFhbHBoYeICPENhcGFiaWxpdGllc1xOZXR3b3JraW5nXENvbmZpZGVudGlhbGh0dHBcVjFhbHBoYVxHUEJNZXRhZGF0YeoCM0NhcGFiaWxpdGllczo6TmV0d29ya2luZzo6Q29uZmlkZW50aWFsaHR0cDo6VjFhbHBoYWIGcHJvdG8z', [file_tools_generator_v1alpha_cre_metadata]);
|
|
12
|
+
/**
|
|
13
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.SecretIdentifier.
|
|
14
|
+
* Use `create(SecretIdentifierSchema)` to create a new message.
|
|
15
|
+
*/
|
|
16
|
+
export const SecretIdentifierSchema = /*@__PURE__*/ messageDesc(file_capabilities_networking_confidentialhttp_v1alpha_client, 0);
|
|
17
|
+
/**
|
|
18
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.Request.
|
|
19
|
+
* Use `create(RequestSchema)` to create a new message.
|
|
20
|
+
*/
|
|
21
|
+
export const RequestSchema =
|
|
22
|
+
/*@__PURE__*/
|
|
23
|
+
messageDesc(file_capabilities_networking_confidentialhttp_v1alpha_client, 1);
|
|
24
|
+
/**
|
|
25
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.ResponseTemplate.
|
|
26
|
+
* Use `create(ResponseTemplateSchema)` to create a new message.
|
|
27
|
+
*/
|
|
28
|
+
export const ResponseTemplateSchema = /*@__PURE__*/ messageDesc(file_capabilities_networking_confidentialhttp_v1alpha_client, 2);
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveRequestData.
|
|
31
|
+
* Use `create(HTTPEnclaveRequestDataSchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export const HTTPEnclaveRequestDataSchema = /*@__PURE__*/ messageDesc(file_capabilities_networking_confidentialhttp_v1alpha_client, 3);
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.EnclaveActionInput.
|
|
36
|
+
* Use `create(EnclaveActionInputSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export const EnclaveActionInputSchema = /*@__PURE__*/ messageDesc(file_capabilities_networking_confidentialhttp_v1alpha_client, 4);
|
|
39
|
+
/**
|
|
40
|
+
* Describes the message capabilities.networking.confidentialhttp.v1alpha.HTTPEnclaveResponseData.
|
|
41
|
+
* Use `create(HTTPEnclaveResponseDataSchema)` to create a new message.
|
|
42
|
+
*/
|
|
43
|
+
export const HTTPEnclaveResponseDataSchema = /*@__PURE__*/ messageDesc(file_capabilities_networking_confidentialhttp_v1alpha_client, 5);
|
|
44
|
+
/**
|
|
45
|
+
* @generated from service capabilities.networking.confidentialhttp.v1alpha.Client
|
|
46
|
+
*/
|
|
47
|
+
export const Client = /*@__PURE__*/ serviceDesc(file_capabilities_networking_confidentialhttp_v1alpha_client, 0);
|