Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions integrations/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ GIT
PATH
remote: .
specs:
<<<<<<< HEAD
multiwoven-integrations (0.34.5)
=======
multiwoven-integrations (0.34.8)
>>>>>>> f144a73a (feat(CE): add semistructured model query type (#1463))
MailchimpMarketing
activesupport
async-websocket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module Types
DestinationSyncMode = Types::String.enum("insert", "upsert")
ConnectorType = Types::String.enum("source", "destination")
ConnectorQueryType = Types::String.enum("raw_sql", "soql", "ai_ml", "vector_search")
ModelQueryType = Types::String.enum("raw_sql", "dbt", "soql", "table_selector", "ai_ml", "dynamic_sql", "unstructured", "vector_search")
ModelQueryType = Types::String.enum("raw_sql", "dbt", "soql", "table_selector", "ai_ml", "dynamic_sql", "unstructured", "vector_search", "semistructured")
ConnectionStatusType = Types::String.enum("succeeded", "failed")
StreamType = Types::String.enum("static", "dynamic", "user_defined")
StreamAction = Types::String.enum("fetch", "create", "update", "delete")
Expand Down
4 changes: 4 additions & 0 deletions integrations/lib/multiwoven/integrations/rollout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

module Multiwoven
module Integrations
<<<<<<< HEAD
VERSION = "0.34.5"
=======
VERSION = "0.34.8"
>>>>>>> f144a73a (feat(CE): add semistructured model query type (#1463))

ENABLED_SOURCES = %w[
Snowflake
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,10 @@ module Integrations::Protocol
model = Model.new(name: "Test", query: "SELECT * FROM table", query_type: "vector_search", primary_key: "id")
expect("vector_search").to include(model.query_type)
end
it "has a query_type 'semistructured'" do
model = Model.new(name: "Test", query: "", query_type: "semistructured", primary_key: "id")
expect("semistructured").to include(model.query_type)
end
end
end

Expand Down
Loading