@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.
@@ -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 {