@valon-technologies/gestalt 0.0.1-alpha.13 → 0.0.1-alpha.16
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/gen/google/rpc/status_pb.ts +76 -0
- package/gen/v1/agent_pb.ts +561 -65
- package/gen/v1/datastore_pb.ts +457 -2
- package/gen/v1/plugin_pb.ts +31 -14
- package/gen/v1/pluginruntime_pb.ts +120 -81
- package/gen/v1/runtime_pb.ts +29 -1
- package/gen/v1/s3_pb.ts +101 -1
- package/gen/v1/workflow_pb.ts +644 -58
- package/package.json +5 -3
- package/src/agent.ts +168 -15
- package/src/api.ts +4 -1
- package/src/build.ts +2 -0
- package/src/index.ts +69 -18
- package/src/indexeddb.ts +481 -1
- package/src/invoker.ts +3 -0
- package/src/plugin.ts +3 -184
- package/src/pluginruntime.ts +220 -0
- package/src/provider-kind.ts +6 -0
- package/src/provider.ts +16 -0
- package/src/runtime-log-host.ts +244 -0
- package/src/runtime.ts +46 -26
- package/src/s3.ts +81 -0
- package/src/telemetry.ts +429 -0
- package/src/workflow-manager.ts +11 -0
- package/src/manifest-metadata.ts +0 -107
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
// Copyright 2026 Google LLC
|
|
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
|
+
|
|
15
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=ts"
|
|
16
|
+
// @generated from file google/rpc/status.proto (package google.rpc, syntax proto3)
|
|
17
|
+
/* eslint-disable */
|
|
18
|
+
|
|
19
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
20
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
21
|
+
import type { Any } from "@bufbuild/protobuf/wkt";
|
|
22
|
+
import { file_google_protobuf_any } from "@bufbuild/protobuf/wkt";
|
|
23
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Describes the file google/rpc/status.proto.
|
|
27
|
+
*/
|
|
28
|
+
export const file_google_rpc_status: GenFile = /*@__PURE__*/
|
|
29
|
+
fileDesc("Chdnb29nbGUvcnBjL3N0YXR1cy5wcm90bxIKZ29vZ2xlLnJwYyJOCgZTdGF0dXMSDAoEY29kZRgBIAEoBRIPCgdtZXNzYWdlGAIgASgJEiUKB2RldGFpbHMYAyADKAsyFC5nb29nbGUucHJvdG9idWYuQW55Ql4KDmNvbS5nb29nbGUucnBjQgtTdGF0dXNQcm90b1ABWjdnb29nbGUuZ29sYW5nLm9yZy9nZW5wcm90by9nb29nbGVhcGlzL3JwYy9zdGF0dXM7c3RhdHVzogIDUlBDYgZwcm90bzM", [file_google_protobuf_any]);
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* The `Status` type defines a logical error model that is suitable for
|
|
33
|
+
* different programming environments, including REST APIs and RPC APIs. It is
|
|
34
|
+
* used by [gRPC](https://github.com/grpc). Each `Status` message contains
|
|
35
|
+
* three pieces of data: error code, error message, and error details.
|
|
36
|
+
*
|
|
37
|
+
* You can find out more about this error model and how to work with it in the
|
|
38
|
+
* [API Design Guide](https://cloud.google.com/apis/design/errors).
|
|
39
|
+
*
|
|
40
|
+
* @generated from message google.rpc.Status
|
|
41
|
+
*/
|
|
42
|
+
export type Status = Message<"google.rpc.Status"> & {
|
|
43
|
+
/**
|
|
44
|
+
* The status code, which should be an enum value of
|
|
45
|
+
* [google.rpc.Code][google.rpc.Code].
|
|
46
|
+
*
|
|
47
|
+
* @generated from field: int32 code = 1;
|
|
48
|
+
*/
|
|
49
|
+
code: number;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* A developer-facing error message, which should be in English. Any
|
|
53
|
+
* user-facing error message should be localized and sent in the
|
|
54
|
+
* [google.rpc.Status.details][google.rpc.Status.details] field, or localized
|
|
55
|
+
* by the client.
|
|
56
|
+
*
|
|
57
|
+
* @generated from field: string message = 2;
|
|
58
|
+
*/
|
|
59
|
+
message: string;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* A list of messages that carry the error details. There is a common set of
|
|
63
|
+
* message types for APIs to use.
|
|
64
|
+
*
|
|
65
|
+
* @generated from field: repeated google.protobuf.Any details = 3;
|
|
66
|
+
*/
|
|
67
|
+
details: Any[];
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Describes the message google.rpc.Status.
|
|
72
|
+
* Use `create(StatusSchema)` to create a new message.
|
|
73
|
+
*/
|
|
74
|
+
export const StatusSchema: GenMessage<Status> = /*@__PURE__*/
|
|
75
|
+
messageDesc(file_google_rpc_status, 0);
|
|
76
|
+
|