@mochabug/adapt-web 0.0.1-beta
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/genproto/buf/validate/validate_pb.d.ts +4504 -0
- package/dist/genproto/buf/validate/validate_pb.js +422 -0
- package/dist/genproto/buf/validate/validate_pb.js.map +1 -0
- package/dist/genproto/google/api/annotations_pb.d.ts +13 -0
- package/dist/genproto/google/api/annotations_pb.js +27 -0
- package/dist/genproto/google/api/annotations_pb.js.map +1 -0
- package/dist/genproto/google/api/client_pb.d.ts +795 -0
- package/dist/genproto/google/api/client_pb.js +287 -0
- package/dist/genproto/google/api/client_pb.js.map +1 -0
- package/dist/genproto/google/api/http_pb.d.ts +440 -0
- package/dist/genproto/google/api/http_pb.js +34 -0
- package/dist/genproto/google/api/http_pb.js.map +1 -0
- package/dist/genproto/google/api/launch_stage_pb.d.ts +86 -0
- package/dist/genproto/google/api/launch_stage_pb.js +101 -0
- package/dist/genproto/google/api/launch_stage_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/automations/v1/automations_pb.d.ts +542 -0
- package/dist/genproto/mochabugapis/adapt/automations/v1/automations_pb.js +157 -0
- package/dist/genproto/mochabugapis/adapt/automations/v1/automations_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/graph/exchange_pb.d.ts +43 -0
- package/dist/genproto/mochabugapis/adapt/graph/exchange_pb.js +26 -0
- package/dist/genproto/mochabugapis/adapt/graph/exchange_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/graph/jtd_schema_pb.d.ts +117 -0
- package/dist/genproto/mochabugapis/adapt/graph/jtd_schema_pb.js +25 -0
- package/dist/genproto/mochabugapis/adapt/graph/jtd_schema_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/graph/receiver_pb.d.ts +39 -0
- package/dist/genproto/mochabugapis/adapt/graph/receiver_pb.js +26 -0
- package/dist/genproto/mochabugapis/adapt/graph/receiver_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/graph/signal_descriptor_pb.d.ts +43 -0
- package/dist/genproto/mochabugapis/adapt/graph/signal_descriptor_pb.js +26 -0
- package/dist/genproto/mochabugapis/adapt/graph/signal_descriptor_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/graph/transceiver_pb.d.ts +37 -0
- package/dist/genproto/mochabugapis/adapt/graph/transceiver_pb.js +26 -0
- package/dist/genproto/mochabugapis/adapt/graph/transceiver_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/graph/transmitter_pb.d.ts +43 -0
- package/dist/genproto/mochabugapis/adapt/graph/transmitter_pb.js +26 -0
- package/dist/genproto/mochabugapis/adapt/graph/transmitter_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/graph/vertex_config_pb.d.ts +62 -0
- package/dist/genproto/mochabugapis/adapt/graph/vertex_config_pb.js +28 -0
- package/dist/genproto/mochabugapis/adapt/graph/vertex_config_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/plugins/v1/plugins_pb.d.ts +815 -0
- package/dist/genproto/mochabugapis/adapt/plugins/v1/plugins_pb.js +284 -0
- package/dist/genproto/mochabugapis/adapt/plugins/v1/plugins_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/runtime/v1/incoming_pb.d.ts +224 -0
- package/dist/genproto/mochabugapis/adapt/runtime/v1/incoming_pb.js +75 -0
- package/dist/genproto/mochabugapis/adapt/runtime/v1/incoming_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/runtime/v1/runtime_pb.d.ts +1295 -0
- package/dist/genproto/mochabugapis/adapt/runtime/v1/runtime_pb.js +346 -0
- package/dist/genproto/mochabugapis/adapt/runtime/v1/runtime_pb.js.map +1 -0
- package/dist/genproto/mochabugapis/adapt/runtime/v1/store_pb.d.ts +530 -0
- package/dist/genproto/mochabugapis/adapt/runtime/v1/store_pb.js +225 -0
- package/dist/genproto/mochabugapis/adapt/runtime/v1/store_pb.js.map +1 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.js +175 -0
- package/dist/index.js.map +1 -0
- package/package.json +37 -0
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
// Copyright 2023, mochabug AB
|
|
2
|
+
//
|
|
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
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
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.
|
|
14
|
+
import { enumDesc, fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
|
|
15
|
+
import { file_buf_validate_validate } from "../../../../buf/validate/validate_pb";
|
|
16
|
+
import { file_google_api_annotations } from "../../../../google/api/annotations_pb";
|
|
17
|
+
import { file_google_api_client } from "../../../../google/api/client_pb";
|
|
18
|
+
import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
19
|
+
/**
|
|
20
|
+
* Describes the file mochabugapis/adapt/automations/v1/automations.proto.
|
|
21
|
+
*/
|
|
22
|
+
export const file_mochabugapis_adapt_automations_v1_automations = /*@__PURE__*/ fileDesc("CjNtb2NoYWJ1Z2FwaXMvYWRhcHQvYXV0b21hdGlvbnMvdjEvYXV0b21hdGlvbnMucHJvdG8SIW1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MSJcChVJbmhlcml0U2Vzc2lvblJlcXVlc3QSQwoKYXV0b21hdGlvbhgBIAEoCzIvLm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5BdXRvbWF0aW9uSWQizwEKFkluaGVyaXRTZXNzaW9uUmVzcG9uc2USQwoKYXV0b21hdGlvbhgBIAEoCzIvLm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5BdXRvbWF0aW9uSWQSDwoHc2Vzc2lvbhgCIAEoCRINCgV0b2tlbhgDIAEoCRISCgptcXR0X3Rva2VuGAQgASgJEjAKB2V4cGlyZXMYBSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSACIAQFCCgoIX2V4cGlyZXMipAEKEVJlYWRPdXRwdXRSZXF1ZXN0EksKCmF1dG9tYXRpb24YASABKAsyLy5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuQXV0b21hdGlvbklkQga6SAPIAQESMwoKbmV3ZXJfdGhhbhgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBIAIgBAUINCgtfbmV3ZXJfdGhhbiKVAQoSUmVhZE91dHB1dFJlc3BvbnNlEkMKB3Nlc3Npb24YASABKAsyKi5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuU2Vzc2lvbkIGukgDyAEBEjoKB291dHB1dHMYAiADKAsyKS5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuT3V0cHV0IqIBCg9SZWFkVXJsc1JlcXVlc3QSSwoKYXV0b21hdGlvbhgBIAEoCzIvLm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5BdXRvbWF0aW9uSWRCBrpIA8gBARIzCgpuZXdlcl90aGFuGAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgAiAEBQg0KC19uZXdlcl90aGFuIo0BChBSZWFkVXJsc1Jlc3BvbnNlEkMKB3Nlc3Npb24YASABKAsyKi5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuU2Vzc2lvbkIGukgDyAEBEjQKBHVybHMYAiADKAsyJi5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuVXJsIoIDChNTdGFydFNlc3Npb25SZXF1ZXN0EksKCmF1dG9tYXRpb24YASABKAsyLy5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuQXV0b21hdGlvbklkQga6SAPIAQESPgoLdHJhbnNtaXR0ZXIYAiABKAlCJLpIIdgBAnIcEAEYZDIWXlthLXpBLVowLTlfLV17MSwxMDB9JEgAiAEBEoUBCgdzaWduYWxzGAMgAygLMkMubW9jaGFidWdhcGlzLmFkYXB0LmF1dG9tYXRpb25zLnYxLlN0YXJ0U2Vzc2lvblJlcXVlc3QuU2lnbmFsc0VudHJ5Qi+6SCyaASkiInIgEAEYZDIaXltfJGEtekEtWl1bXyRhLXpBLVowLTldKiQqA8gBARpGCgxTaWduYWxzRW50cnkSCwoDa2V5GAEgASgJEiUKBXZhbHVlGAIgASgLMhYuZ29vZ2xlLnByb3RvYnVmLlZhbHVlOgI4AUIOCgxfdHJhbnNtaXR0ZXIi1QEKFFN0YXJ0U2Vzc2lvblJlc3BvbnNlEkMKCmF1dG9tYXRpb24YASABKAsyLy5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuQXV0b21hdGlvbklkEg8KB3Nlc3Npb24YAiABKAkSFQoNc2Vzc2lvbl90b2tlbhgDIAEoCRISCgptcXR0X3Rva2VuGAQgASgJEjAKB2V4cGlyZXMYBSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSACIAQFCCgoIX2V4cGlyZXMiYQoSU3RvcFNlc3Npb25SZXF1ZXN0EksKCmF1dG9tYXRpb24YASABKAsyLy5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuQXV0b21hdGlvbklkQga6SAPIAQEiFQoTU3RvcFNlc3Npb25SZXNwb25zZSJgChFHZXRTZXNzaW9uUmVxdWVzdBJLCgphdXRvbWF0aW9uGAEgASgLMi8ubW9jaGFidWdhcGlzLmFkYXB0LmF1dG9tYXRpb25zLnYxLkF1dG9tYXRpb25JZEIGukgDyAEBIlkKEkdldFNlc3Npb25SZXNwb25zZRJDCgdzZXNzaW9uGAEgASgLMioubW9jaGFidWdhcGlzLmFkYXB0LmF1dG9tYXRpb25zLnYxLlNlc3Npb25CBrpIA8gBASK8AQoMQXV0b21hdGlvbklkEh4KDG9yZ2FuaXphdGlvbhgBIAEoCUIIukgFcgOwAQESIwoFZ3JvdXAYAiABKAlCFLpIEXIPMg1eWzAtOWEtel17NH0kEigKCmF1dG9tYXRpb24YAyABKAlCFLpIEXIPMg1eWzAtOWEtel17NH0kEj0KB3ZlcnNpb24YBCABKAlCLLpIKdgBAnIkEAUYZDIeXihcZCt8XCopXC4oXGQrfFwqKVwuKFxkK3xcKikkIpwCCgZPdXRwdXQSJAoGdmVydGV4GAEgASgJQhS6SBFyDzINXlswLTlhLXpdezR9JBJyCgRkYXRhGAIgAygLMjMubW9jaGFidWdhcGlzLmFkYXB0LmF1dG9tYXRpb25zLnYxLk91dHB1dC5EYXRhRW50cnlCL7pILJoBKSIiciAQARhkMhpeW18kYS16QS1aXVtfJGEtekEtWjAtOV0qJCoDyAEBEjMKB2NyZWF0ZWQYAyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wQga6SAPIAQEaQwoJRGF0YUVudHJ5EgsKA2tleRgBIAEoCRIlCgV2YWx1ZRgCIAEoCzIWLmdvb2dsZS5wcm90b2J1Zi5WYWx1ZToCOAEiTwoDVXJsEhMKA3VybBgBIAEoCUIGukgDyAEBEjMKB2NyZWF0ZWQYAiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wQga6SAPIAQEiuAEKB1Nlc3Npb24SSwoKYXV0b21hdGlvbhgBIAEoCzIvLm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5BdXRvbWF0aW9uSWRCBrpIA8gBARIbCgdzZXNzaW9uGAQgASgJQgq6SAdyBRABGPQDEkMKBnN0YXR1cxgFIAEoDjIpLm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5TdGF0dXNCCLpIBYIBAiAAKoYBCgZTdGF0dXMSFgoSU1RBVFVTX1VOU1BFQ0lGSUVEEAASEgoOU1RBVFVTX1JVTk5JTkcQARISCg5TVEFUVVNfU1RPUFBFRBACEhQKEFNUQVRVU19DT01QTEVURUQQAxISCg5TVEFUVVNfRVhQSVJFRBAEEhIKDlNUQVRVU19FUlJPUkVEEAUyngwKEUF1dG9tYXRpb25TZXJ2aWNlEuYBCgxTdGFydFNlc3Npb24SNi5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuU3RhcnRTZXNzaW9uUmVxdWVzdBo3Lm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5TdGFydFNlc3Npb25SZXNwb25zZSJlgtPkkwJfOgEqIlovdjEvYXV0b21hdGlvbnMve2F1dG9tYXRpb24ub3JnYW5pemF0aW9ufS97YXV0b21hdGlvbi5ncm91cH0ve2F1dG9tYXRpb24uYXV0b21hdGlvbn0vc3RhcnQS5wEKC1N0b3BTZXNzaW9uEjUubW9jaGFidWdhcGlzLmFkYXB0LmF1dG9tYXRpb25zLnYxLlN0b3BTZXNzaW9uUmVxdWVzdBo2Lm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5TdG9wU2Vzc2lvblJlc3BvbnNlImmC0+STAmMqYS92MS9hdXRvbWF0aW9ucy97YXV0b21hdGlvbi5vcmdhbml6YXRpb259L3thdXRvbWF0aW9uLmdyb3VwfS97YXV0b21hdGlvbi5hdXRvbWF0aW9ufS9zZXNzaW9uL3N0b3AS9gEKDkluaGVyaXRTZXNzaW9uEjgubW9jaGFidWdhcGlzLmFkYXB0LmF1dG9tYXRpb25zLnYxLkluaGVyaXRTZXNzaW9uUmVxdWVzdBo5Lm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5Jbmhlcml0U2Vzc2lvblJlc3BvbnNlIm+C0+STAmk6ASoiZC92MS9hdXRvbWF0aW9ucy97YXV0b21hdGlvbi5vcmdhbml6YXRpb259L3thdXRvbWF0aW9uLmdyb3VwfS97YXV0b21hdGlvbi5hdXRvbWF0aW9ufS9zZXNzaW9uL2luaGVyaXQS5gEKCkdldFNlc3Npb24SNC5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuR2V0U2Vzc2lvblJlcXVlc3QaNS5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuR2V0U2Vzc2lvblJlc3BvbnNlImuC0+STAmUSYy92MS9hdXRvbWF0aW9ucy97YXV0b21hdGlvbi5vcmdhbml6YXRpb259L3thdXRvbWF0aW9uLmdyb3VwfS97YXV0b21hdGlvbi5hdXRvbWF0aW9ufS9zZXNzaW9uL3N0YXR1cxLmAQoKUmVhZE91dHB1dBI0Lm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5SZWFkT3V0cHV0UmVxdWVzdBo1Lm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5SZWFkT3V0cHV0UmVzcG9uc2Uia4LT5JMCZRJjL3YxL2F1dG9tYXRpb25zL3thdXRvbWF0aW9uLm9yZ2FuaXphdGlvbn0ve2F1dG9tYXRpb24uZ3JvdXB9L3thdXRvbWF0aW9uLmF1dG9tYXRpb259L3Nlc3Npb24vb3V0cHV0Et4BCghSZWFkVXJscxIyLm1vY2hhYnVnYXBpcy5hZGFwdC5hdXRvbWF0aW9ucy52MS5SZWFkVXJsc1JlcXVlc3QaMy5tb2NoYWJ1Z2FwaXMuYWRhcHQuYXV0b21hdGlvbnMudjEuUmVhZFVybHNSZXNwb25zZSJpgtPkkwJjEmEvdjEvYXV0b21hdGlvbnMve2F1dG9tYXRpb24ub3JnYW5pemF0aW9ufS97YXV0b21hdGlvbi5ncm91cH0ve2F1dG9tYXRpb24uYXV0b21hdGlvbn0vc2Vzc2lvbi91cmxzGokBykEWYWRhcHQubW9jaGFidWdhcGlzLmNvbdJBbWh0dHBzOi8vd3d3Lm1vY2hhYnVnYXBpcy5jb20vYXV0aC9hZGFwdC5hdXRvbWF0aW9ucyxodHRwczovL3d3dy5tb2NoYWJ1Z2FwaXMuY29tL2F1dGgvYWRhcHQuYXV0b21hdGlvbnMuc3RhcnRiBnByb3RvMw", [file_buf_validate_validate, file_google_api_annotations, file_google_api_client, file_google_protobuf_struct, file_google_protobuf_timestamp]);
|
|
23
|
+
/**
|
|
24
|
+
* Describes the message mochabugapis.adapt.automations.v1.InheritSessionRequest.
|
|
25
|
+
* Use `create(InheritSessionRequestSchema)` to create a new message.
|
|
26
|
+
*/
|
|
27
|
+
export const InheritSessionRequestSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 0);
|
|
28
|
+
/**
|
|
29
|
+
* Describes the message mochabugapis.adapt.automations.v1.InheritSessionResponse.
|
|
30
|
+
* Use `create(InheritSessionResponseSchema)` to create a new message.
|
|
31
|
+
*/
|
|
32
|
+
export const InheritSessionResponseSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 1);
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message mochabugapis.adapt.automations.v1.ReadOutputRequest.
|
|
35
|
+
* Use `create(ReadOutputRequestSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export const ReadOutputRequestSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 2);
|
|
38
|
+
/**
|
|
39
|
+
* Describes the message mochabugapis.adapt.automations.v1.ReadOutputResponse.
|
|
40
|
+
* Use `create(ReadOutputResponseSchema)` to create a new message.
|
|
41
|
+
*/
|
|
42
|
+
export const ReadOutputResponseSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 3);
|
|
43
|
+
/**
|
|
44
|
+
* Describes the message mochabugapis.adapt.automations.v1.ReadUrlsRequest.
|
|
45
|
+
* Use `create(ReadUrlsRequestSchema)` to create a new message.
|
|
46
|
+
*/
|
|
47
|
+
export const ReadUrlsRequestSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 4);
|
|
48
|
+
/**
|
|
49
|
+
* Describes the message mochabugapis.adapt.automations.v1.ReadUrlsResponse.
|
|
50
|
+
* Use `create(ReadUrlsResponseSchema)` to create a new message.
|
|
51
|
+
*/
|
|
52
|
+
export const ReadUrlsResponseSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 5);
|
|
53
|
+
/**
|
|
54
|
+
* Describes the message mochabugapis.adapt.automations.v1.StartSessionRequest.
|
|
55
|
+
* Use `create(StartSessionRequestSchema)` to create a new message.
|
|
56
|
+
*/
|
|
57
|
+
export const StartSessionRequestSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 6);
|
|
58
|
+
/**
|
|
59
|
+
* Describes the message mochabugapis.adapt.automations.v1.StartSessionResponse.
|
|
60
|
+
* Use `create(StartSessionResponseSchema)` to create a new message.
|
|
61
|
+
*/
|
|
62
|
+
export const StartSessionResponseSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 7);
|
|
63
|
+
/**
|
|
64
|
+
* Describes the message mochabugapis.adapt.automations.v1.StopSessionRequest.
|
|
65
|
+
* Use `create(StopSessionRequestSchema)` to create a new message.
|
|
66
|
+
*/
|
|
67
|
+
export const StopSessionRequestSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 8);
|
|
68
|
+
/**
|
|
69
|
+
* Describes the message mochabugapis.adapt.automations.v1.StopSessionResponse.
|
|
70
|
+
* Use `create(StopSessionResponseSchema)` to create a new message.
|
|
71
|
+
*/
|
|
72
|
+
export const StopSessionResponseSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 9);
|
|
73
|
+
/**
|
|
74
|
+
* Describes the message mochabugapis.adapt.automations.v1.GetSessionRequest.
|
|
75
|
+
* Use `create(GetSessionRequestSchema)` to create a new message.
|
|
76
|
+
*/
|
|
77
|
+
export const GetSessionRequestSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 10);
|
|
78
|
+
/**
|
|
79
|
+
* Describes the message mochabugapis.adapt.automations.v1.GetSessionResponse.
|
|
80
|
+
* Use `create(GetSessionResponseSchema)` to create a new message.
|
|
81
|
+
*/
|
|
82
|
+
export const GetSessionResponseSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 11);
|
|
83
|
+
/**
|
|
84
|
+
* Describes the message mochabugapis.adapt.automations.v1.AutomationId.
|
|
85
|
+
* Use `create(AutomationIdSchema)` to create a new message.
|
|
86
|
+
*/
|
|
87
|
+
export const AutomationIdSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 12);
|
|
88
|
+
/**
|
|
89
|
+
* Describes the message mochabugapis.adapt.automations.v1.Output.
|
|
90
|
+
* Use `create(OutputSchema)` to create a new message.
|
|
91
|
+
*/
|
|
92
|
+
export const OutputSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 13);
|
|
93
|
+
/**
|
|
94
|
+
* Describes the message mochabugapis.adapt.automations.v1.Url.
|
|
95
|
+
* Use `create(UrlSchema)` to create a new message.
|
|
96
|
+
*/
|
|
97
|
+
export const UrlSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 14);
|
|
98
|
+
/**
|
|
99
|
+
* Describes the message mochabugapis.adapt.automations.v1.Session.
|
|
100
|
+
* Use `create(SessionSchema)` to create a new message.
|
|
101
|
+
*/
|
|
102
|
+
export const SessionSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_automations_v1_automations, 15);
|
|
103
|
+
/**
|
|
104
|
+
* The session enum status
|
|
105
|
+
*
|
|
106
|
+
* @generated from enum mochabugapis.adapt.automations.v1.Status
|
|
107
|
+
*/
|
|
108
|
+
export var Status;
|
|
109
|
+
(function (Status) {
|
|
110
|
+
/**
|
|
111
|
+
* Unspecified
|
|
112
|
+
*
|
|
113
|
+
* @generated from enum value: STATUS_UNSPECIFIED = 0;
|
|
114
|
+
*/
|
|
115
|
+
Status[Status["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
116
|
+
/**
|
|
117
|
+
* The session is running
|
|
118
|
+
*
|
|
119
|
+
* @generated from enum value: STATUS_RUNNING = 1;
|
|
120
|
+
*/
|
|
121
|
+
Status[Status["RUNNING"] = 1] = "RUNNING";
|
|
122
|
+
/**
|
|
123
|
+
* The session has been stopped
|
|
124
|
+
*
|
|
125
|
+
* @generated from enum value: STATUS_STOPPED = 2;
|
|
126
|
+
*/
|
|
127
|
+
Status[Status["STOPPED"] = 2] = "STOPPED";
|
|
128
|
+
/**
|
|
129
|
+
* The session has been completed
|
|
130
|
+
*
|
|
131
|
+
* @generated from enum value: STATUS_COMPLETED = 3;
|
|
132
|
+
*/
|
|
133
|
+
Status[Status["COMPLETED"] = 3] = "COMPLETED";
|
|
134
|
+
/**
|
|
135
|
+
* The session has expired
|
|
136
|
+
*
|
|
137
|
+
* @generated from enum value: STATUS_EXPIRED = 4;
|
|
138
|
+
*/
|
|
139
|
+
Status[Status["EXPIRED"] = 4] = "EXPIRED";
|
|
140
|
+
/**
|
|
141
|
+
* The session has been errored (errors during the runtime)
|
|
142
|
+
*
|
|
143
|
+
* @generated from enum value: STATUS_ERRORED = 5;
|
|
144
|
+
*/
|
|
145
|
+
Status[Status["ERRORED"] = 5] = "ERRORED";
|
|
146
|
+
})(Status || (Status = {}));
|
|
147
|
+
/**
|
|
148
|
+
* Describes the enum mochabugapis.adapt.automations.v1.Status.
|
|
149
|
+
*/
|
|
150
|
+
export const StatusSchema = /*@__PURE__*/ enumDesc(file_mochabugapis_adapt_automations_v1_automations, 0);
|
|
151
|
+
/**
|
|
152
|
+
* A service that provides automation functionality.
|
|
153
|
+
*
|
|
154
|
+
* @generated from service mochabugapis.adapt.automations.v1.AutomationService
|
|
155
|
+
*/
|
|
156
|
+
export const AutomationService = /*@__PURE__*/ serviceDesc(file_mochabugapis_adapt_automations_v1_automations, 0);
|
|
157
|
+
//# sourceMappingURL=automations_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"automations_pb.js","sourceRoot":"","sources":["../../../../../../src/genproto/mochabugapis/adapt/automations/v1/automations_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { Transceiver } from "./transceiver_pb";
|
|
3
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file mochabugapis/adapt/graph/exchange.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_mochabugapis_adapt_graph_exchange: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* Exchange represents a communication setup involving both transmitters and receivers.
|
|
10
|
+
*
|
|
11
|
+
* @generated from message mochabugapis.adapt.graph.Exchange
|
|
12
|
+
*/
|
|
13
|
+
export type Exchange = Message<"mochabugapis.adapt.graph.Exchange"> & {
|
|
14
|
+
/**
|
|
15
|
+
* Identifier for the exchange, following the ECMA naming pattern, limited to 50 characters.
|
|
16
|
+
*
|
|
17
|
+
* @generated from field: string name = 1;
|
|
18
|
+
*/
|
|
19
|
+
name: string;
|
|
20
|
+
/**
|
|
21
|
+
* Optional descriptive text for the exchange, up to 250 characters.
|
|
22
|
+
*
|
|
23
|
+
* @generated from field: optional string description = 2;
|
|
24
|
+
*/
|
|
25
|
+
description?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Outputs involved in the exchange, limited to 10 unique transmitters.
|
|
28
|
+
*
|
|
29
|
+
* @generated from field: repeated mochabugapis.adapt.graph.Transceiver transmitters = 3;
|
|
30
|
+
*/
|
|
31
|
+
transmitters: Transceiver[];
|
|
32
|
+
/**
|
|
33
|
+
* Inputs involved in the exchange, requiring between 1 and 10 unique receivers.
|
|
34
|
+
*
|
|
35
|
+
* @generated from field: repeated mochabugapis.adapt.graph.Transceiver receivers = 4;
|
|
36
|
+
*/
|
|
37
|
+
receivers: Transceiver[];
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Describes the message mochabugapis.adapt.graph.Exchange.
|
|
41
|
+
* Use `create(ExchangeSchema)` to create a new message.
|
|
42
|
+
*/
|
|
43
|
+
export declare const ExchangeSchema: GenMessage<Exchange>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// Copyright 2023, mochabug AB
|
|
2
|
+
//
|
|
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
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
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.
|
|
14
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
15
|
+
import { file_buf_validate_validate } from "../../../buf/validate/validate_pb";
|
|
16
|
+
import { file_mochabugapis_adapt_graph_transceiver } from "./transceiver_pb";
|
|
17
|
+
/**
|
|
18
|
+
* Describes the file mochabugapis/adapt/graph/exchange.proto.
|
|
19
|
+
*/
|
|
20
|
+
export const file_mochabugapis_adapt_graph_exchange = /*@__PURE__*/ fileDesc("Cidtb2NoYWJ1Z2FwaXMvYWRhcHQvZ3JhcGgvZXhjaGFuZ2UucHJvdG8SGG1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaCLoAwoIRXhjaGFuZ2USLQoEbmFtZRgBIAEoCUIfukgcchoQARgyMhReW18kYS16XVtfJGEtejAtOV0qJBIiCgtkZXNjcmlwdGlvbhgCIAEoCUIIukgFcgMY+gFIAIgBARLCAQoMdHJhbnNtaXR0ZXJzGAMgAygLMiUubW9jaGFidWdhcGlzLmFkYXB0LmdyYXBoLlRyYW5zY2VpdmVyQoQBukiAAboBeAoZdHJhbnNtaXR0ZXJzX3VuaXF1ZV9uYW1lcxIpRWFjaCB0cmFuc21pdHRlciBtdXN0IGhhdmUgYSB1bmlxdWUgbmFtZS4aMHRoaXMubWFwKHRyYW5zbWl0dGVyLCB0cmFuc21pdHRlci5uYW1lKS51bmlxdWUoKZIBAhAKErMBCglyZWNlaXZlcnMYBCADKAsyJS5tb2NoYWJ1Z2FwaXMuYWRhcHQuZ3JhcGguVHJhbnNjZWl2ZXJCebpIdroBbAoWcmVjZWl2ZXJzX3VuaXF1ZV9uYW1lcxImRWFjaCByZWNlaXZlciBtdXN0IGhhdmUgYSB1bmlxdWUgbmFtZS4aKnRoaXMubWFwKHJlY2VpdmVyLCByZWNlaXZlci5uYW1lKS51bmlxdWUoKZIBBAgBEApCDgoMX2Rlc2NyaXB0aW9uYgZwcm90bzM", [file_buf_validate_validate, file_mochabugapis_adapt_graph_transceiver]);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message mochabugapis.adapt.graph.Exchange.
|
|
23
|
+
* Use `create(ExchangeSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const ExchangeSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_graph_exchange, 0);
|
|
26
|
+
//# sourceMappingURL=exchange_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"exchange_pb.js","sourceRoot":"","sources":["../../../../../src/genproto/mochabugapis/adapt/graph/exchange_pb.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAC9B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAOjC,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAC;AAE/E,OAAO,EAAE,yCAAyC,EAAE,MAAM,kBAAkB,CAAC;AAG7E;;GAEG;AACH,MAAM,CAAC,MAAM,sCAAsC,GAAY,aAAa,CAC1E,QAAQ,CAAC,qvBAAqvB,EAAE,CAAC,0BAA0B,EAAE,yCAAyC,CAAC,CAAC,CAAC;AAqC30B;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAyB,aAAa,CAC/D,WAAW,CAAC,sCAAsC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file mochabugapis/adapt/graph/jtd_schema.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_mochabugapis_adapt_graph_jtd_schema: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* Schema represents a JSON Typedef Schema.
|
|
9
|
+
*
|
|
10
|
+
* @generated from message mochabugapis.adapt.graph.JTDSchema
|
|
11
|
+
*/
|
|
12
|
+
export type JTDSchema = Message<"mochabugapis.adapt.graph.JTDSchema"> & {
|
|
13
|
+
/**
|
|
14
|
+
* The definitions keyword MUST be an object where each value is a schema.
|
|
15
|
+
* This object defines a collection of schema definitions that can be referenced via the ref keyword.
|
|
16
|
+
*
|
|
17
|
+
* @generated from field: map<string, mochabugapis.adapt.graph.JTDSchema> definitions = 1;
|
|
18
|
+
*/
|
|
19
|
+
definitions: {
|
|
20
|
+
[key: string]: JTDSchema;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* The metadata keyword MUST be an object.
|
|
24
|
+
* This object is ignored during validation and can store custom information about the schema.
|
|
25
|
+
*
|
|
26
|
+
* @generated from field: google.protobuf.Struct metadata = 2;
|
|
27
|
+
*/
|
|
28
|
+
metadata?: JsonObject;
|
|
29
|
+
/**
|
|
30
|
+
* The nullable keyword MUST be a boolean.
|
|
31
|
+
* If true, the schema matches the value null as well as any value matched by the rest of the schema.
|
|
32
|
+
*
|
|
33
|
+
* @generated from field: bool nullable = 3;
|
|
34
|
+
*/
|
|
35
|
+
nullable: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* The ref keyword MUST be a string.
|
|
38
|
+
* It is a reference to a schema defined in the definitions object.
|
|
39
|
+
*
|
|
40
|
+
* @generated from field: optional string ref = 4;
|
|
41
|
+
*/
|
|
42
|
+
ref?: string;
|
|
43
|
+
/**
|
|
44
|
+
* The type keyword MUST be one of the predefined strings specifying the type of the value.
|
|
45
|
+
* Valid values are: "boolean", "float32", "float64", "int8", "uint8", "int16", "uint16", "int32", "uint32", "string", "timestamp".
|
|
46
|
+
*
|
|
47
|
+
* @generated from field: string type = 5;
|
|
48
|
+
*/
|
|
49
|
+
type: string;
|
|
50
|
+
/**
|
|
51
|
+
* The enum keyword MUST be a non-empty array of strings.
|
|
52
|
+
* The schema matches any value that is equal to one of the elements in the array.
|
|
53
|
+
*
|
|
54
|
+
* @generated from field: repeated string enum = 6;
|
|
55
|
+
*/
|
|
56
|
+
enum: string[];
|
|
57
|
+
/**
|
|
58
|
+
* The elements keyword MUST be a schema.
|
|
59
|
+
* It is used to validate elements in an array.
|
|
60
|
+
*
|
|
61
|
+
* @generated from field: mochabugapis.adapt.graph.JTDSchema elements = 7;
|
|
62
|
+
*/
|
|
63
|
+
elements?: JTDSchema;
|
|
64
|
+
/**
|
|
65
|
+
* The properties keyword MUST be an object where each value is a schema.
|
|
66
|
+
* Each key is a required property that must match the corresponding schema.
|
|
67
|
+
*
|
|
68
|
+
* @generated from field: map<string, mochabugapis.adapt.graph.JTDSchema> properties = 8;
|
|
69
|
+
*/
|
|
70
|
+
properties: {
|
|
71
|
+
[key: string]: JTDSchema;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* The optional_properties keyword MUST be an object where each value is a schema.
|
|
75
|
+
* Each key is an optional property that, if present, must match the corresponding schema.
|
|
76
|
+
*
|
|
77
|
+
* @generated from field: map<string, mochabugapis.adapt.graph.JTDSchema> optional_properties = 9;
|
|
78
|
+
*/
|
|
79
|
+
optionalProperties: {
|
|
80
|
+
[key: string]: JTDSchema;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* The additional_properties keyword MUST be a boolean.
|
|
84
|
+
* If true, the object may have properties other than those specified in properties and optionalProperties.
|
|
85
|
+
*
|
|
86
|
+
* @generated from field: bool additional_properties = 10;
|
|
87
|
+
*/
|
|
88
|
+
additionalProperties: boolean;
|
|
89
|
+
/**
|
|
90
|
+
* The values keyword MUST be a schema.
|
|
91
|
+
* It is used to validate the values in an object.
|
|
92
|
+
*
|
|
93
|
+
* @generated from field: mochabugapis.adapt.graph.JTDSchema values = 11;
|
|
94
|
+
*/
|
|
95
|
+
values?: JTDSchema;
|
|
96
|
+
/**
|
|
97
|
+
* The discriminator keyword MUST be a string.
|
|
98
|
+
* It is used with mapping to represent tagged unions.
|
|
99
|
+
*
|
|
100
|
+
* @generated from field: string discriminator = 12;
|
|
101
|
+
*/
|
|
102
|
+
discriminator: string;
|
|
103
|
+
/**
|
|
104
|
+
* The mapping keyword MUST be an object where each value is a schema.
|
|
105
|
+
* Used with discriminator for tagged unions, mapping discriminator values to schemas.
|
|
106
|
+
*
|
|
107
|
+
* @generated from field: map<string, mochabugapis.adapt.graph.JTDSchema> mapping = 13;
|
|
108
|
+
*/
|
|
109
|
+
mapping: {
|
|
110
|
+
[key: string]: JTDSchema;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* Describes the message mochabugapis.adapt.graph.JTDSchema.
|
|
115
|
+
* Use `create(JTDSchemaSchema)` to create a new message.
|
|
116
|
+
*/
|
|
117
|
+
export declare const JTDSchemaSchema: GenMessage<JTDSchema>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// Copyright 2023, mochabug AB
|
|
2
|
+
//
|
|
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
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
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.
|
|
14
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
15
|
+
import { file_google_protobuf_struct } from "@bufbuild/protobuf/wkt";
|
|
16
|
+
/**
|
|
17
|
+
* Describes the file mochabugapis/adapt/graph/jtd_schema.proto.
|
|
18
|
+
*/
|
|
19
|
+
export const file_mochabugapis_adapt_graph_jtd_schema = /*@__PURE__*/ fileDesc("Ciltb2NoYWJ1Z2FwaXMvYWRhcHQvZ3JhcGgvanRkX3NjaGVtYS5wcm90bxIYbW9jaGFidWdhcGlzLmFkYXB0LmdyYXBoIrcHCglKVERTY2hlbWESSQoLZGVmaW5pdGlvbnMYASADKAsyNC5tb2NoYWJ1Z2FwaXMuYWRhcHQuZ3JhcGguSlREU2NoZW1hLkRlZmluaXRpb25zRW50cnkSKQoIbWV0YWRhdGEYAiABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0EhAKCG51bGxhYmxlGAMgASgIEhAKA3JlZhgEIAEoCUgAiAEBEgwKBHR5cGUYBSABKAkSDAoEZW51bRgGIAMoCRI1CghlbGVtZW50cxgHIAEoCzIjLm1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaC5KVERTY2hlbWESRwoKcHJvcGVydGllcxgIIAMoCzIzLm1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaC5KVERTY2hlbWEuUHJvcGVydGllc0VudHJ5ElgKE29wdGlvbmFsX3Byb3BlcnRpZXMYCSADKAsyOy5tb2NoYWJ1Z2FwaXMuYWRhcHQuZ3JhcGguSlREU2NoZW1hLk9wdGlvbmFsUHJvcGVydGllc0VudHJ5Eh0KFWFkZGl0aW9uYWxfcHJvcGVydGllcxgKIAEoCBIzCgZ2YWx1ZXMYCyABKAsyIy5tb2NoYWJ1Z2FwaXMuYWRhcHQuZ3JhcGguSlREU2NoZW1hEhUKDWRpc2NyaW1pbmF0b3IYDCABKAkSQQoHbWFwcGluZxgNIAMoCzIwLm1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaC5KVERTY2hlbWEuTWFwcGluZ0VudHJ5GlcKEERlZmluaXRpb25zRW50cnkSCwoDa2V5GAEgASgJEjIKBXZhbHVlGAIgASgLMiMubW9jaGFidWdhcGlzLmFkYXB0LmdyYXBoLkpURFNjaGVtYToCOAEaVgoPUHJvcGVydGllc0VudHJ5EgsKA2tleRgBIAEoCRIyCgV2YWx1ZRgCIAEoCzIjLm1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaC5KVERTY2hlbWE6AjgBGl4KF09wdGlvbmFsUHJvcGVydGllc0VudHJ5EgsKA2tleRgBIAEoCRIyCgV2YWx1ZRgCIAEoCzIjLm1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaC5KVERTY2hlbWE6AjgBGlMKDE1hcHBpbmdFbnRyeRILCgNrZXkYASABKAkSMgoFdmFsdWUYAiABKAsyIy5tb2NoYWJ1Z2FwaXMuYWRhcHQuZ3JhcGguSlREU2NoZW1hOgI4AUIGCgRfcmVmYgZwcm90bzM", [file_google_protobuf_struct]);
|
|
20
|
+
/**
|
|
21
|
+
* Describes the message mochabugapis.adapt.graph.JTDSchema.
|
|
22
|
+
* Use `create(JTDSchemaSchema)` to create a new message.
|
|
23
|
+
*/
|
|
24
|
+
export const JTDSchemaSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_graph_jtd_schema, 0);
|
|
25
|
+
//# sourceMappingURL=jtd_schema_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jtd_schema_pb.js","sourceRoot":"","sources":["../../../../../src/genproto/mochabugapis/adapt/graph/jtd_schema_pb.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAC9B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAOjC,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,2BAA2B,EAAE,MAAM,wBAAwB,CAAC;AAGrE;;GAEG;AACH,MAAM,CAAC,MAAM,wCAAwC,GAAY,aAAa,CAC5E,QAAQ,CAAC,i2CAAi2C,EAAE,CAAC,2BAA2B,CAAC,CAAC,CAAC;AAiH74C;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAA0B,aAAa,CACjE,WAAW,CAAC,wCAAwC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { SignalDescriptor } from "./signal_descriptor_pb";
|
|
3
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file mochabugapis/adapt/graph/receiver.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_mochabugapis_adapt_graph_receiver: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* Receiver represents an input point for a vertex, which can bind
|
|
10
|
+
* to multiple signals.
|
|
11
|
+
*
|
|
12
|
+
* @generated from message mochabugapis.adapt.graph.Receiver
|
|
13
|
+
*/
|
|
14
|
+
export type Receiver = Message<"mochabugapis.adapt.graph.Receiver"> & {
|
|
15
|
+
/**
|
|
16
|
+
* Identifier for the receiver, conforming to the ECMA naming pattern
|
|
17
|
+
* and limited to 50 characters.
|
|
18
|
+
*
|
|
19
|
+
* @generated from field: string name = 1;
|
|
20
|
+
*/
|
|
21
|
+
name: string;
|
|
22
|
+
/**
|
|
23
|
+
* Optional descriptive text for the receiver's purpose, up to 250 characters.
|
|
24
|
+
*
|
|
25
|
+
* @generated from field: optional string description = 2;
|
|
26
|
+
*/
|
|
27
|
+
description?: string;
|
|
28
|
+
/**
|
|
29
|
+
* List of signals the receiver listens for. Can contain up to 512 unique signals.
|
|
30
|
+
*
|
|
31
|
+
* @generated from field: repeated mochabugapis.adapt.graph.SignalDescriptor bindings = 3;
|
|
32
|
+
*/
|
|
33
|
+
bindings: SignalDescriptor[];
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message mochabugapis.adapt.graph.Receiver.
|
|
37
|
+
* Use `create(ReceiverSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export declare const ReceiverSchema: GenMessage<Receiver>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// Copyright 2023, mochabug AB
|
|
2
|
+
//
|
|
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
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
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.
|
|
14
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
15
|
+
import { file_buf_validate_validate } from "../../../buf/validate/validate_pb";
|
|
16
|
+
import { file_mochabugapis_adapt_graph_signal_descriptor } from "./signal_descriptor_pb";
|
|
17
|
+
/**
|
|
18
|
+
* Describes the file mochabugapis/adapt/graph/receiver.proto.
|
|
19
|
+
*/
|
|
20
|
+
export const file_mochabugapis_adapt_graph_receiver = /*@__PURE__*/ fileDesc("Cidtb2NoYWJ1Z2FwaXMvYWRhcHQvZ3JhcGgvcmVjZWl2ZXIucHJvdG8SGG1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaCKiAgoIUmVjZWl2ZXISLQoEbmFtZRgBIAEoCUIfukgcchoQARgyMhReW18kYS16XVtfJGEtejAtOV0qJBIiCgtkZXNjcmlwdGlvbhgCIAEoCUIIukgFcgMY+gFIAIgBARKyAQoIYmluZGluZ3MYAyADKAsyKi5tb2NoYWJ1Z2FwaXMuYWRhcHQuZ3JhcGguU2lnbmFsRGVzY3JpcHRvckJ0ukhxugFoChViaW5kaW5nc191bmlxdWVfbmFtZXMSJUVhY2ggYmluZGluZyBtdXN0IGhhdmUgYSB1bmlxdWUgbmFtZS4aKHRoaXMubWFwKGJpbmRpbmcsIGJpbmRpbmcubmFtZSkudW5pcXVlKCmSAQMQgARCDgoMX2Rlc2NyaXB0aW9uYgZwcm90bzM", [file_buf_validate_validate, file_mochabugapis_adapt_graph_signal_descriptor]);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message mochabugapis.adapt.graph.Receiver.
|
|
23
|
+
* Use `create(ReceiverSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const ReceiverSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_graph_receiver, 0);
|
|
26
|
+
//# sourceMappingURL=receiver_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"receiver_pb.js","sourceRoot":"","sources":["../../../../../src/genproto/mochabugapis/adapt/graph/receiver_pb.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAC9B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAOjC,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAC;AAE/E,OAAO,EAAE,+CAA+C,EAAE,MAAM,wBAAwB,CAAC;AAGzF;;GAEG;AACH,MAAM,CAAC,MAAM,sCAAsC,GAAY,aAAa,CAC1E,QAAQ,CAAC,6eAA6e,EAAE,CAAC,0BAA0B,EAAE,+CAA+C,CAAC,CAAC,CAAC;AAgCzkB;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAyB,aAAa,CAC/D,WAAW,CAAC,sCAAsC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { JTDSchema } from "./jtd_schema_pb";
|
|
3
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file mochabugapis/adapt/graph/signal_descriptor.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_mochabugapis_adapt_graph_signal_descriptor: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* SignalDescriptor defines the properties of a signal without containing the actual signal data.
|
|
10
|
+
*
|
|
11
|
+
* @generated from message mochabugapis.adapt.graph.SignalDescriptor
|
|
12
|
+
*/
|
|
13
|
+
export type SignalDescriptor = Message<"mochabugapis.adapt.graph.SignalDescriptor"> & {
|
|
14
|
+
/**
|
|
15
|
+
* Identifier for the signal, following the ECMA naming pattern, limited to 50 characters.
|
|
16
|
+
*
|
|
17
|
+
* @generated from field: string name = 1;
|
|
18
|
+
*/
|
|
19
|
+
name: string;
|
|
20
|
+
/**
|
|
21
|
+
* Optional descriptive text for the signal, up to 250 characters.
|
|
22
|
+
*
|
|
23
|
+
* @generated from field: optional string description = 2;
|
|
24
|
+
*/
|
|
25
|
+
description?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Schema definition for the signal, required and must follow the JTD definition found here: https://www.rfc-editor.org/rfc/rfc8927.
|
|
28
|
+
*
|
|
29
|
+
* @generated from field: mochabugapis.adapt.graph.JTDSchema schema = 3;
|
|
30
|
+
*/
|
|
31
|
+
schema?: JTDSchema;
|
|
32
|
+
/**
|
|
33
|
+
* Flag indicating if the signal is optional.
|
|
34
|
+
*
|
|
35
|
+
* @generated from field: optional bool optional = 4;
|
|
36
|
+
*/
|
|
37
|
+
optional?: boolean;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Describes the message mochabugapis.adapt.graph.SignalDescriptor.
|
|
41
|
+
* Use `create(SignalDescriptorSchema)` to create a new message.
|
|
42
|
+
*/
|
|
43
|
+
export declare const SignalDescriptorSchema: GenMessage<SignalDescriptor>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// Copyright 2023, mochabug AB
|
|
2
|
+
//
|
|
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
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
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.
|
|
14
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
15
|
+
import { file_buf_validate_validate } from "../../../buf/validate/validate_pb";
|
|
16
|
+
import { file_mochabugapis_adapt_graph_jtd_schema } from "./jtd_schema_pb";
|
|
17
|
+
/**
|
|
18
|
+
* Describes the file mochabugapis/adapt/graph/signal_descriptor.proto.
|
|
19
|
+
*/
|
|
20
|
+
export const file_mochabugapis_adapt_graph_signal_descriptor = /*@__PURE__*/ fileDesc("CjBtb2NoYWJ1Z2FwaXMvYWRhcHQvZ3JhcGgvc2lnbmFsX2Rlc2NyaXB0b3IucHJvdG8SGG1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaCLWAQoQU2lnbmFsRGVzY3JpcHRvchItCgRuYW1lGAEgASgJQh+6SBxyGhABGDIyFF5bXyRhLXpdW18kYS16MC05XSokEiIKC2Rlc2NyaXB0aW9uGAIgASgJQgi6SAVyAxj6AUgAiAEBEjsKBnNjaGVtYRgDIAEoCzIjLm1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaC5KVERTY2hlbWFCBrpIA8gBARIVCghvcHRpb25hbBgEIAEoCEgBiAEBQg4KDF9kZXNjcmlwdGlvbkILCglfb3B0aW9uYWxiBnByb3RvMw", [file_buf_validate_validate, file_mochabugapis_adapt_graph_jtd_schema]);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message mochabugapis.adapt.graph.SignalDescriptor.
|
|
23
|
+
* Use `create(SignalDescriptorSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const SignalDescriptorSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_graph_signal_descriptor, 0);
|
|
26
|
+
//# sourceMappingURL=signal_descriptor_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signal_descriptor_pb.js","sourceRoot":"","sources":["../../../../../src/genproto/mochabugapis/adapt/graph/signal_descriptor_pb.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAC9B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAOjC,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAC;AAE/E,OAAO,EAAE,wCAAwC,EAAE,MAAM,iBAAiB,CAAC;AAG3E;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAY,aAAa,CACnF,QAAQ,CAAC,oZAAoZ,EAAE,CAAC,0BAA0B,EAAE,wCAAwC,CAAC,CAAC,CAAC;AAqCze;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,+CAA+C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { SignalDescriptor } from "./signal_descriptor_pb";
|
|
3
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file mochabugapis/adapt/graph/transceiver.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_mochabugapis_adapt_graph_transceiver: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* Transceiver is a dual-purpose entity capable of both emitting and receiving signals.
|
|
10
|
+
*
|
|
11
|
+
* @generated from message mochabugapis.adapt.graph.Transceiver
|
|
12
|
+
*/
|
|
13
|
+
export type Transceiver = Message<"mochabugapis.adapt.graph.Transceiver"> & {
|
|
14
|
+
/**
|
|
15
|
+
* Identifier for the transceiver, following the ECMA naming pattern, limited to 50 characters.
|
|
16
|
+
*
|
|
17
|
+
* @generated from field: string name = 1;
|
|
18
|
+
*/
|
|
19
|
+
name: string;
|
|
20
|
+
/**
|
|
21
|
+
* Optional descriptive text for the transceiver's purpose, up to 250 characters.
|
|
22
|
+
*
|
|
23
|
+
* @generated from field: optional string description = 2;
|
|
24
|
+
*/
|
|
25
|
+
description?: string;
|
|
26
|
+
/**
|
|
27
|
+
* List of signals the transceiver handles. Can contain up to 512 unique signals.
|
|
28
|
+
*
|
|
29
|
+
* @generated from field: repeated mochabugapis.adapt.graph.SignalDescriptor signals = 3;
|
|
30
|
+
*/
|
|
31
|
+
signals: SignalDescriptor[];
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message mochabugapis.adapt.graph.Transceiver.
|
|
35
|
+
* Use `create(TransceiverSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export declare const TransceiverSchema: GenMessage<Transceiver>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// Copyright 2023, mochabug AB
|
|
2
|
+
//
|
|
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
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
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.
|
|
14
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
15
|
+
import { file_buf_validate_validate } from "../../../buf/validate/validate_pb";
|
|
16
|
+
import { file_mochabugapis_adapt_graph_signal_descriptor } from "./signal_descriptor_pb";
|
|
17
|
+
/**
|
|
18
|
+
* Describes the file mochabugapis/adapt/graph/transceiver.proto.
|
|
19
|
+
*/
|
|
20
|
+
export const file_mochabugapis_adapt_graph_transceiver = /*@__PURE__*/ fileDesc("Ciptb2NoYWJ1Z2FwaXMvYWRhcHQvZ3JhcGgvdHJhbnNjZWl2ZXIucHJvdG8SGG1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaCKgAgoLVHJhbnNjZWl2ZXISLQoEbmFtZRgBIAEoCUIfukgcchoQARgyMhReW18kYS16XVtfJGEtejAtOV0qJBIiCgtkZXNjcmlwdGlvbhgCIAEoCUIIukgFcgMY+gFIAIgBARKtAQoHc2lnbmFscxgDIAMoCzIqLm1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaC5TaWduYWxEZXNjcmlwdG9yQnC6SG26AWQKFHNpZ25hbHNfdW5pcXVlX25hbWVzEiRFYWNoIHNpZ25hbCBtdXN0IGhhdmUgYSB1bmlxdWUgbmFtZS4aJnRoaXMubWFwKHNpZ25hbCwgc2lnbmFsLm5hbWUpLnVuaXF1ZSgpkgEDEIAEQg4KDF9kZXNjcmlwdGlvbmIGcHJvdG8z", [file_buf_validate_validate, file_mochabugapis_adapt_graph_signal_descriptor]);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message mochabugapis.adapt.graph.Transceiver.
|
|
23
|
+
* Use `create(TransceiverSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const TransceiverSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_graph_transceiver, 0);
|
|
26
|
+
//# sourceMappingURL=transceiver_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transceiver_pb.js","sourceRoot":"","sources":["../../../../../src/genproto/mochabugapis/adapt/graph/transceiver_pb.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAC9B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAOjC,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAC;AAE/E,OAAO,EAAE,+CAA+C,EAAE,MAAM,wBAAwB,CAAC;AAGzF;;GAEG;AACH,MAAM,CAAC,MAAM,yCAAyC,GAAY,aAAa,CAC7E,QAAQ,CAAC,8eAA8e,EAAE,CAAC,0BAA0B,EAAE,+CAA+C,CAAC,CAAC,CAAC;AA8B1kB;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAA4B,aAAa,CACrE,WAAW,CAAC,yCAAyC,EAAE,CAAC,CAAC,CAAC"}
|