dataiku-sdk 0.5.1 → 0.6.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.
@@ -611,6 +611,10 @@ export declare const SqlQueryResponseSchema: import("@sinclair/typebox").TObject
611
611
  name: import("@sinclair/typebox").TString;
612
612
  type: import("@sinclair/typebox").TString;
613
613
  }>>;
614
+ columns: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
615
+ name: import("@sinclair/typebox").TString;
616
+ type: import("@sinclair/typebox").TString;
617
+ }>>>;
614
618
  rows: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TUnknown>>;
615
619
  }>;
616
620
  export type SqlQueryResponse = Static<typeof SqlQueryResponseSchema>;
@@ -601,6 +601,7 @@ export const SqlQueryResultSchema = Type.Object({
601
601
  export const SqlQueryResponseSchema = Type.Object({
602
602
  queryId: Type.String(),
603
603
  schema: Type.Array(SqlQuerySchemaSchema),
604
+ columns: Type.Optional(Type.Array(SqlQuerySchemaSchema)),
604
605
  rows: Type.Array(Type.Array(Type.Unknown())),
605
606
  });
606
607
  // ---------------------------------------------------------------------------