@mochabug/adapt-web 0.0.17 → 0.0.20

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.
Files changed (46) hide show
  1. package/dist/genproto/buf/validate/validate_pb.d.ts +99 -150
  2. package/dist/genproto/buf/validate/validate_pb.js +5 -20
  3. package/dist/genproto/buf/validate/validate_pb.js.map +1 -1
  4. package/dist/genproto/google/api/annotations_pb.js +1 -1
  5. package/dist/genproto/google/api/client_pb.d.ts +40 -0
  6. package/dist/genproto/google/api/client_pb.js +2 -2
  7. package/dist/genproto/google/api/client_pb.js.map +1 -1
  8. package/dist/genproto/google/api/http_pb.js +2 -2
  9. package/dist/genproto/google/api/http_pb.js.map +1 -1
  10. package/dist/genproto/google/api/launch_stage_pb.js +1 -1
  11. package/dist/genproto/mochabugapis/adapt/plugins/v1/file_pb.d.ts +61 -0
  12. package/dist/genproto/mochabugapis/adapt/plugins/v1/file_pb.js +25 -0
  13. package/dist/genproto/mochabugapis/adapt/plugins/v1/file_pb.js.map +1 -0
  14. package/dist/genproto/mochabugapis/adapt/plugins/v1/manifest_pb.d.ts +222 -0
  15. package/dist/genproto/mochabugapis/adapt/plugins/v1/manifest_pb.js +28 -0
  16. package/dist/genproto/mochabugapis/adapt/plugins/v1/manifest_pb.js.map +1 -0
  17. package/dist/genproto/mochabugapis/adapt/plugins/v1/oauth2_service_pb.d.ts +714 -0
  18. package/dist/genproto/mochabugapis/adapt/plugins/v1/oauth2_service_pb.js +184 -0
  19. package/dist/genproto/mochabugapis/adapt/plugins/v1/oauth2_service_pb.js.map +1 -0
  20. package/dist/genproto/mochabugapis/adapt/plugins/v1/oneof_service_pb.d.ts +91 -0
  21. package/dist/genproto/mochabugapis/adapt/plugins/v1/oneof_service_pb.js +27 -0
  22. package/dist/genproto/mochabugapis/adapt/plugins/v1/oneof_service_pb.js.map +1 -0
  23. package/dist/genproto/mochabugapis/adapt/plugins/v1/plugins_pb.d.ts +64 -1260
  24. package/dist/genproto/mochabugapis/adapt/plugins/v1/plugins_pb.js +10 -249
  25. package/dist/genproto/mochabugapis/adapt/plugins/v1/plugins_pb.js.map +1 -1
  26. package/dist/genproto/mochabugapis/adapt/plugins/v1/service_binding_pb.d.ts +133 -0
  27. package/dist/genproto/mochabugapis/adapt/plugins/v1/service_binding_pb.js +30 -0
  28. package/dist/genproto/mochabugapis/adapt/plugins/v1/service_binding_pb.js.map +1 -0
  29. package/dist/genproto/mochabugapis/adapt/plugins/v1/service_definition_pb.d.ts +115 -0
  30. package/dist/genproto/mochabugapis/adapt/plugins/v1/service_definition_pb.js +28 -0
  31. package/dist/genproto/mochabugapis/adapt/plugins/v1/service_definition_pb.js.map +1 -0
  32. package/dist/genproto/mochabugapis/adapt/plugins/v1/tls_service_pb.d.ts +158 -0
  33. package/dist/genproto/mochabugapis/adapt/plugins/v1/tls_service_pb.js +61 -0
  34. package/dist/genproto/mochabugapis/adapt/plugins/v1/tls_service_pb.js.map +1 -0
  35. package/dist/genproto/mochabugapis/adapt/plugins/v1/variable_service_pb.d.ts +59 -0
  36. package/dist/genproto/mochabugapis/adapt/plugins/v1/variable_service_pb.js +27 -0
  37. package/dist/genproto/mochabugapis/adapt/plugins/v1/variable_service_pb.js.map +1 -0
  38. package/dist/genproto/mochabugapis/adapt/plugins/v1/vertex_pb.d.ts +231 -0
  39. package/dist/genproto/mochabugapis/adapt/plugins/v1/vertex_pb.js +76 -0
  40. package/dist/genproto/mochabugapis/adapt/plugins/v1/vertex_pb.js.map +1 -0
  41. package/dist/genproto/mochabugapis/adapt/runtime/v1/runtime_pb.d.ts +146 -8
  42. package/dist/genproto/mochabugapis/adapt/runtime/v1/runtime_pb.js +59 -44
  43. package/dist/genproto/mochabugapis/adapt/runtime/v1/runtime_pb.js.map +1 -1
  44. package/dist/index.d.ts +1 -2
  45. package/dist/index.js.map +1 -1
  46. package/package.json +23 -5
@@ -0,0 +1,61 @@
1
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
2
+ import type { Message } from "@bufbuild/protobuf";
3
+ /**
4
+ * Describes the file mochabugapis/adapt/plugins/v1/file.proto.
5
+ */
6
+ export declare const file_mochabugapis_adapt_plugins_v1_file: GenFile;
7
+ /**
8
+ * File represents a file within a plugin package.
9
+ *
10
+ * @generated from message mochabugapis.adapt.plugins.v1.File
11
+ */
12
+ export type File = Message<"mochabugapis.adapt.plugins.v1.File"> & {
13
+ /**
14
+ * The 'name' or 'path' of the file
15
+ *
16
+ * @generated from field: string name = 1;
17
+ */
18
+ name: string;
19
+ /**
20
+ * 'data' contains the actual binary file data.
21
+ *
22
+ * @generated from field: bytes data = 2;
23
+ */
24
+ data: Uint8Array;
25
+ /**
26
+ * The mime type of the file
27
+ *
28
+ * @generated from field: optional string mime_type = 3;
29
+ */
30
+ mimeType?: string;
31
+ };
32
+ /**
33
+ * File represents a file within a plugin package.
34
+ *
35
+ * @generated from message mochabugapis.adapt.plugins.v1.File
36
+ */
37
+ export type FileJson = {
38
+ /**
39
+ * The 'name' or 'path' of the file
40
+ *
41
+ * @generated from field: string name = 1;
42
+ */
43
+ name?: string;
44
+ /**
45
+ * 'data' contains the actual binary file data.
46
+ *
47
+ * @generated from field: bytes data = 2;
48
+ */
49
+ data?: string;
50
+ /**
51
+ * The mime type of the file
52
+ *
53
+ * @generated from field: optional string mime_type = 3;
54
+ */
55
+ mimeType?: string;
56
+ };
57
+ /**
58
+ * Describes the message mochabugapis.adapt.plugins.v1.File.
59
+ * Use `create(FileSchema)` to create a new message.
60
+ */
61
+ export declare const FileSchema: GenMessage<File, FileJson>;
@@ -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_buf_validate_validate } from "../../../../buf/validate/validate_pb";
16
+ /**
17
+ * Describes the file mochabugapis/adapt/plugins/v1/file.proto.
18
+ */
19
+ export const file_mochabugapis_adapt_plugins_v1_file = /*@__PURE__*/ fileDesc("Cihtb2NoYWJ1Z2FwaXMvYWRhcHQvcGx1Z2lucy92MS9maWxlLnByb3RvEh1tb2NoYWJ1Z2FwaXMuYWRhcHQucGx1Z2lucy52MSKDAQoERmlsZRIrCgRuYW1lGAEgASgJQh26SBpyGBACGIAgMhFeW14vXSsoXC9bXi9dKykqJBIaCgRkYXRhGAIgASgMQgy6SAl6BxABGIC0iRMSJAoJbWltZV90eXBlGAMgASgJQgy6SAnYAQJyBBABGGRIAIgBAUIMCgpfbWltZV90eXBlYgZwcm90bzM", [file_buf_validate_validate]);
20
+ /**
21
+ * Describes the message mochabugapis.adapt.plugins.v1.File.
22
+ * Use `create(FileSchema)` to create a new message.
23
+ */
24
+ export const FileSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_plugins_v1_file, 0);
25
+ //# sourceMappingURL=file_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file_pb.js","sourceRoot":"","sources":["../../../../../../src/genproto/mochabugapis/adapt/plugins/v1/file_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;AAQjC,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,0BAA0B,EAAE,MAAM,sCAAsC,CAAC;AAGlF;;GAEG;AACH,MAAM,CAAC,MAAM,uCAAuC,GAAY,aAAa,CAC3E,QAAQ,CAAC,iSAAiS,EAAE,CAAC,0BAA0B,CAAC,CAAC,CAAC;AA0D5U;;;GAGG;AACH,MAAM,CAAC,MAAM,UAAU,GAA+B,aAAa,CACjE,WAAW,CAAC,uCAAuC,EAAE,CAAC,CAAC,CAAC"}
@@ -0,0 +1,222 @@
1
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
2
+ import type { ServiceBinding, ServiceBindingJson } from "./service_binding_pb";
3
+ import type { ServiceDefinition, ServiceDefinitionJson } from "./service_definition_pb";
4
+ import type { Vertex, VertexJson } from "./vertex_pb";
5
+ import type { Message } from "@bufbuild/protobuf";
6
+ /**
7
+ * Describes the file mochabugapis/adapt/plugins/v1/manifest.proto.
8
+ */
9
+ export declare const file_mochabugapis_adapt_plugins_v1_manifest: GenFile;
10
+ /**
11
+ * Manifest describes a plugin and its properties.
12
+ *
13
+ * Security considerations: The platform ensures that secrets and certificates
14
+ * are stored and transmitted securely.
15
+ *
16
+ * *** Plugin authors must also ensure that their implementations
17
+ * handle sensitive data appropriately! ***
18
+ *
19
+ * @generated from message mochabugapis.adapt.plugins.v1.Manifest
20
+ */
21
+ export type Manifest = Message<"mochabugapis.adapt.plugins.v1.Manifest"> & {
22
+ /**
23
+ * 'name' is the alpha-numeric identifier of the plugin. Must be conform to a ES variable name
24
+ *
25
+ * @generated from field: string name = 1;
26
+ */
27
+ name: string;
28
+ /**
29
+ * 'version' is the plugin's version, following SemVer 2.0: https://semver.org/
30
+ *
31
+ * @generated from field: string version = 2;
32
+ */
33
+ version: string;
34
+ /**
35
+ * 'label' is a human-friendly label displayed in the UI.
36
+ *
37
+ * @generated from field: string label = 3;
38
+ */
39
+ label: string;
40
+ /**
41
+ * 'description' is a short, human-friendly description displayed in the UI.
42
+ *
43
+ * @generated from field: string description = 4;
44
+ */
45
+ description: string;
46
+ /**
47
+ * 'organization' is the id of the organization the user belongs to.
48
+ *
49
+ * @generated from field: string organization = 5;
50
+ */
51
+ organization: string;
52
+ /**
53
+ * 'homepage' is the plugin's homepage URL.
54
+ *
55
+ * @generated from field: optional string homepage = 6;
56
+ */
57
+ homepage?: string;
58
+ /**
59
+ * 'repository' is the plugin's repository URL.
60
+ *
61
+ * @generated from field: optional string repository = 7;
62
+ */
63
+ repository?: string;
64
+ /**
65
+ * 'bugs' is the URL or email for reporting bugs.
66
+ *
67
+ * @generated from field: optional string bugs = 8;
68
+ */
69
+ bugs?: string;
70
+ /**
71
+ * 'author' is the name of the plugin's author.
72
+ *
73
+ * @generated from field: optional string author = 9;
74
+ */
75
+ author?: string;
76
+ /**
77
+ * 'logo' is an optional path to the plugin logo.
78
+ * The logo will be resized to a maximum of 80x80 pixels.
79
+ * - Supported file formats:
80
+ * - GIF: .gif
81
+ * - JPEG: .jpg, .jpeg, .jfif, .pjpeg, .pjp
82
+ * - PNG: .png
83
+ * - SVG: .svg
84
+ * - WEBP: .webp
85
+ * - AVIF: .avif
86
+ *
87
+ * @generated from field: optional string logo = 10;
88
+ */
89
+ logo?: string;
90
+ /**
91
+ * 'vertices' is a list of vertices that constitute the plugin.
92
+ * this is filled in automatically when configurating a project on the filesystem
93
+ *
94
+ * @generated from field: repeated mochabugapis.adapt.plugins.v1.Vertex vertices = 11;
95
+ */
96
+ vertices: Vertex[];
97
+ /**
98
+ * 'service_definitions' are the actual definition of services that may be referenced
99
+ * on either a system level, or user level at the vertices
100
+ *
101
+ * @generated from field: repeated mochabugapis.adapt.plugins.v1.ServiceDefinition service_definitions = 12;
102
+ */
103
+ serviceDefinitions: ServiceDefinition[];
104
+ /**
105
+ * 'system_services' are the services that are available on a system level
106
+ * that is, configured and used by the plugin for exclusive purposes
107
+ * IMPORTANT: any binding referring to a grant-type CODE will be required
108
+ * to have the same name as the system_definition and be required to be of service type
109
+ *
110
+ * @generated from field: repeated mochabugapis.adapt.plugins.v1.ServiceBinding system_services = 13;
111
+ */
112
+ systemServices: ServiceBinding[];
113
+ };
114
+ /**
115
+ * Manifest describes a plugin and its properties.
116
+ *
117
+ * Security considerations: The platform ensures that secrets and certificates
118
+ * are stored and transmitted securely.
119
+ *
120
+ * *** Plugin authors must also ensure that their implementations
121
+ * handle sensitive data appropriately! ***
122
+ *
123
+ * @generated from message mochabugapis.adapt.plugins.v1.Manifest
124
+ */
125
+ export type ManifestJson = {
126
+ /**
127
+ * 'name' is the alpha-numeric identifier of the plugin. Must be conform to a ES variable name
128
+ *
129
+ * @generated from field: string name = 1;
130
+ */
131
+ name?: string;
132
+ /**
133
+ * 'version' is the plugin's version, following SemVer 2.0: https://semver.org/
134
+ *
135
+ * @generated from field: string version = 2;
136
+ */
137
+ version?: string;
138
+ /**
139
+ * 'label' is a human-friendly label displayed in the UI.
140
+ *
141
+ * @generated from field: string label = 3;
142
+ */
143
+ label?: string;
144
+ /**
145
+ * 'description' is a short, human-friendly description displayed in the UI.
146
+ *
147
+ * @generated from field: string description = 4;
148
+ */
149
+ description?: string;
150
+ /**
151
+ * 'organization' is the id of the organization the user belongs to.
152
+ *
153
+ * @generated from field: string organization = 5;
154
+ */
155
+ organization?: string;
156
+ /**
157
+ * 'homepage' is the plugin's homepage URL.
158
+ *
159
+ * @generated from field: optional string homepage = 6;
160
+ */
161
+ homepage?: string;
162
+ /**
163
+ * 'repository' is the plugin's repository URL.
164
+ *
165
+ * @generated from field: optional string repository = 7;
166
+ */
167
+ repository?: string;
168
+ /**
169
+ * 'bugs' is the URL or email for reporting bugs.
170
+ *
171
+ * @generated from field: optional string bugs = 8;
172
+ */
173
+ bugs?: string;
174
+ /**
175
+ * 'author' is the name of the plugin's author.
176
+ *
177
+ * @generated from field: optional string author = 9;
178
+ */
179
+ author?: string;
180
+ /**
181
+ * 'logo' is an optional path to the plugin logo.
182
+ * The logo will be resized to a maximum of 80x80 pixels.
183
+ * - Supported file formats:
184
+ * - GIF: .gif
185
+ * - JPEG: .jpg, .jpeg, .jfif, .pjpeg, .pjp
186
+ * - PNG: .png
187
+ * - SVG: .svg
188
+ * - WEBP: .webp
189
+ * - AVIF: .avif
190
+ *
191
+ * @generated from field: optional string logo = 10;
192
+ */
193
+ logo?: string;
194
+ /**
195
+ * 'vertices' is a list of vertices that constitute the plugin.
196
+ * this is filled in automatically when configurating a project on the filesystem
197
+ *
198
+ * @generated from field: repeated mochabugapis.adapt.plugins.v1.Vertex vertices = 11;
199
+ */
200
+ vertices?: VertexJson[];
201
+ /**
202
+ * 'service_definitions' are the actual definition of services that may be referenced
203
+ * on either a system level, or user level at the vertices
204
+ *
205
+ * @generated from field: repeated mochabugapis.adapt.plugins.v1.ServiceDefinition service_definitions = 12;
206
+ */
207
+ serviceDefinitions?: ServiceDefinitionJson[];
208
+ /**
209
+ * 'system_services' are the services that are available on a system level
210
+ * that is, configured and used by the plugin for exclusive purposes
211
+ * IMPORTANT: any binding referring to a grant-type CODE will be required
212
+ * to have the same name as the system_definition and be required to be of service type
213
+ *
214
+ * @generated from field: repeated mochabugapis.adapt.plugins.v1.ServiceBinding system_services = 13;
215
+ */
216
+ systemServices?: ServiceBindingJson[];
217
+ };
218
+ /**
219
+ * Describes the message mochabugapis.adapt.plugins.v1.Manifest.
220
+ * Use `create(ManifestSchema)` to create a new message.
221
+ */
222
+ export declare const ManifestSchema: GenMessage<Manifest, ManifestJson>;
@@ -0,0 +1,28 @@
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_plugins_v1_service_binding } from "./service_binding_pb";
17
+ import { file_mochabugapis_adapt_plugins_v1_service_definition } from "./service_definition_pb";
18
+ import { file_mochabugapis_adapt_plugins_v1_vertex } from "./vertex_pb";
19
+ /**
20
+ * Describes the file mochabugapis/adapt/plugins/v1/manifest.proto.
21
+ */
22
+ export const file_mochabugapis_adapt_plugins_v1_manifest = /*@__PURE__*/ fileDesc("Cixtb2NoYWJ1Z2FwaXMvYWRhcHQvcGx1Z2lucy92MS9tYW5pZmVzdC5wcm90bxIdbW9jaGFidWdhcGlzLmFkYXB0LnBsdWdpbnMudjEi9QsKCE1hbmlmZXN0Ei0KBG5hbWUYASABKAlCH7pIHHIaEAEYZDIUXltfJGEtel1bXyRhLXowLTldKiQS1AEKB3ZlcnNpb24YAiABKAlCwgG6SL4BcrsBEAUYlgEyswFeKDB8WzEtOV1cZCopXC4oMHxbMS05XVxkKilcLigwfFsxLTldXGQqKSg/Oi0oKD86MHxbMS05XVxkKnxcZCpbYS16QS1aLV1bMC05YS16QS1aLV0qKSg/OlwuKD86MHxbMS05XVxkKnxcZCpbYS16QS1aLV1bMC05YS16QS1aLV0qKSkqKSk/KD86XCsoWzAtOWEtekEtWi1dKyg/OlwuWzAtOWEtekEtWi1dKykqKSk/JBIYCgVsYWJlbBgDIAEoCUIJukgGcgQQARhkEh8KC2Rlc2NyaXB0aW9uGAQgASgJQgq6SAdyBRABGPoBEh4KDG9yZ2FuaXphdGlvbhgFIAEoCUIIukgFcgOwAQESWAoIaG9tZXBhZ2UYBiABKAlCQbpIPtgBAXI5EAsYgCAyMl5odHRwczovL1thLXpBLVowLTkuLV0rKD86XC5bYS16QS1aXXsyLH0pKD86Ly4qKT8kSACIAQESWgoKcmVwb3NpdG9yeRgHIAEoCUJBukg+2AEBcjkQCxiAIDIyXmh0dHBzOi8vW2EtekEtWjAtOS4tXSsoPzpcLlthLXpBLVpdezIsfSkoPzovLiopPyRIAYgBARLZAQoEYnVncxgIIAEoCULFAbpIwQG6AboBChJ2YWxpZF9lbWFpbF9vcl91cmwSIWJ1Z3MgbXVzdCBiZSBhIHZhbGlkIGVtYWlsIG9yIFVSTBqAAXNpemUodGhpcykgPj0gMiAmJiBzaXplKHRoaXMpIDw9IDQwOTYgJiYgKHRoaXMuaXNFbWFpbCgpIHx8IHRoaXMubWF0Y2hlcygnXmh0dHBzOi8vW2EtekEtWjAtOS4tXSsoPzpcXC5bYS16QS1aXXsyLH0pKD86Ly4qKT8kJykp2AEBSAKIAQESIQoGYXV0aG9yGAkgASgJQgy6SAnYAQFyBBABGGRIA4gBARJlCgRsb2dvGAogASgJQlK6SE/YAQFyShACGIAgMkNeKFteL10rKC9bXi9dKykqKVwuKGdpZnxqcGd8anBlZ3xqZmlmfHBqcGVnfHBqcHxwbmd8c3ZnfHdlYnB8YXZpZikkSASIAQESqAEKCHZlcnRpY2VzGAsgAygLMiUubW9jaGFidWdhcGlzLmFkYXB0LnBsdWdpbnMudjEuVmVydGV4Qm+6SGy6AWIKE3ZlcnRleF91bmlxdWVfbmFtZXMSI2EgbmFtZSBjYW5ub3QgYXBwZWFyIG1vcmUgdGhhbiBvbmNlGiZ0aGlzLm1hcCh2ZXJ0ZXgsIHZlcnRleC5uYW1lKS51bmlxdWUoKZIBBAgBEGQSwgEKE3NlcnZpY2VfZGVmaW5pdGlvbnMYDCADKAsyMC5tb2NoYWJ1Z2FwaXMuYWRhcHQucGx1Z2lucy52MS5TZXJ2aWNlRGVmaW5pdGlvbkJzukhwugFmChVzZXJ2aWNlc191bmlxdWVfbmFtZXMSI2EgbmFtZSBjYW5ub3QgYXBwZWFyIG1vcmUgdGhhbiBvbmNlGih0aGlzLm1hcChzZXJ2aWNlLCBzZXJ2aWNlLm5hbWUpLnVuaXF1ZSgpkgEECAAQFBLCAQoPc3lzdGVtX3NlcnZpY2VzGA0gAygLMi0ubW9jaGFidWdhcGlzLmFkYXB0LnBsdWdpbnMudjEuU2VydmljZUJpbmRpbmdCerpId7oBbQocc3lzdGVtX3NlcnZpY2VzX3VuaXF1ZV9uYW1lcxIjYSBuYW1lIGNhbm5vdCBhcHBlYXIgbW9yZSB0aGFuIG9uY2UaKHRoaXMubWFwKHNlcnZpY2UsIHNlcnZpY2UubmFtZSkudW5pcXVlKCmSAQQIABAUQgsKCV9ob21lcGFnZUINCgtfcmVwb3NpdG9yeUIHCgVfYnVnc0IJCgdfYXV0aG9yQgcKBV9sb2dvYgZwcm90bzM", [file_buf_validate_validate, file_mochabugapis_adapt_plugins_v1_service_binding, file_mochabugapis_adapt_plugins_v1_service_definition, file_mochabugapis_adapt_plugins_v1_vertex]);
23
+ /**
24
+ * Describes the message mochabugapis.adapt.plugins.v1.Manifest.
25
+ * Use `create(ManifestSchema)` to create a new message.
26
+ */
27
+ export const ManifestSchema = /*@__PURE__*/ messageDesc(file_mochabugapis_adapt_plugins_v1_manifest, 0);
28
+ //# sourceMappingURL=manifest_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"manifest_pb.js","sourceRoot":"","sources":["../../../../../../src/genproto/mochabugapis/adapt/plugins/v1/manifest_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;AAQjC,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,0BAA0B,EAAE,MAAM,sCAAsC,CAAC;AAElF,OAAO,EAAE,kDAAkD,EAAE,MAAM,sBAAsB,CAAC;AAE1F,OAAO,EAAE,qDAAqD,EAAE,MAAM,yBAAyB,CAAC;AAEhG,OAAO,EAAE,yCAAyC,EAAE,MAAM,aAAa,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,2CAA2C,GAAY,aAAa,CAC/E,QAAQ,CAAC,ymEAAymE,EAAE,CAAC,0BAA0B,EAAE,kDAAkD,EAAE,qDAAqD,EAAE,yCAAyC,CAAC,CAAC,CAAC;AA4O1yE;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAuC,aAAa,CAC7E,WAAW,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC"}