@superblocksteam/types 1.204.0 → 1.206.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/api/v1/api_pb.d.ts +42 -42
- package/dist/src/api/v1/api_pb.d.ts.map +1 -1
- package/dist/src/api/v1/api_pb.js +126 -126
- package/dist/src/api/v1/api_pb.js.map +1 -1
- package/dist/src/api/v1/event_pb.d.ts +70 -0
- package/dist/src/api/v1/event_pb.d.ts.map +1 -1
- package/dist/src/api/v1/event_pb.js +93 -1
- package/dist/src/api/v1/event_pb.js.map +1 -1
- package/dist/src/api/v1/service_pb.d.ts +16 -1
- package/dist/src/api/v1/service_pb.d.ts.map +1 -1
- package/dist/src/api/v1/service_pb.js +17 -0
- package/dist/src/api/v1/service_pb.js.map +1 -1
- package/dist/src/transport/v1/transport_pb.d.ts +7 -0
- package/dist/src/transport/v1/transport_pb.d.ts.map +1 -1
- package/dist/src/transport/v1/transport_pb.js +8 -0
- package/dist/src/transport/v1/transport_pb.js.map +1 -1
- package/dist/src/worker/v1/sandbox_transport_pb.d.ts +7 -1
- package/dist/src/worker/v1/sandbox_transport_pb.d.ts.map +1 -1
- package/dist/src/worker/v1/sandbox_transport_pb.js +7 -0
- package/dist/src/worker/v1/sandbox_transport_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/api/v1/api_pb.ts +42 -42
- package/src/api/v1/event_pb.ts +106 -0
- package/src/api/v1/service_pb.ts +20 -1
- package/src/transport/v1/transport_pb.ts +9 -0
- package/src/worker/v1/sandbox_transport_pb.ts +9 -1
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
7
7
|
import { Duration, Message, proto3, Struct, Timestamp } from "@bufbuild/protobuf";
|
|
8
8
|
import { Request_Data_Data_Props, Request_Data_Data_Quota, Request_Data_Pinned } from "../../transport/v1/transport_pb";
|
|
9
|
-
import { OutputOld } from "../../api/v1/event_pb";
|
|
9
|
+
import { IntegrationDiagnostic, OutputOld } from "../../api/v1/event_pb";
|
|
10
10
|
import { Error } from "../../common/v1/errors_pb";
|
|
11
11
|
|
|
12
12
|
/**
|
|
@@ -164,6 +164,13 @@ export class ExecuteResponse extends Message<ExecuteResponse> {
|
|
|
164
164
|
*/
|
|
165
165
|
structuredLog: StructuredLog[] = [];
|
|
166
166
|
|
|
167
|
+
/**
|
|
168
|
+
* Per-integration-call diagnostics captured when include_diagnostics was set.
|
|
169
|
+
*
|
|
170
|
+
* @generated from field: repeated api.v1.IntegrationDiagnostic diagnostics = 8;
|
|
171
|
+
*/
|
|
172
|
+
diagnostics: IntegrationDiagnostic[] = [];
|
|
173
|
+
|
|
167
174
|
constructor(data?: PartialMessage<ExecuteResponse>) {
|
|
168
175
|
super();
|
|
169
176
|
proto3.util.initPartial(data, this);
|
|
@@ -179,6 +186,7 @@ export class ExecuteResponse extends Message<ExecuteResponse> {
|
|
|
179
186
|
{ no: 5, name: "startTime", kind: "message", T: Timestamp, opt: true },
|
|
180
187
|
{ no: 6, name: "executionTime", kind: "message", T: Duration },
|
|
181
188
|
{ no: 7, name: "structuredLog", kind: "message", T: StructuredLog, repeated: true },
|
|
189
|
+
{ no: 8, name: "diagnostics", kind: "message", T: IntegrationDiagnostic, repeated: true },
|
|
182
190
|
]);
|
|
183
191
|
|
|
184
192
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExecuteResponse {
|