multiwoven-integrations 0.23.0 → 0.23.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e98711e5541a7b51611bbf512f564615feae6270adf9c012efa5a27728311e15
4
- data.tar.gz: bf73432b3da9db1c3f713c24c99aafb1db7c22811269f55fae5d65e5235c748d
3
+ metadata.gz: b73ec323c93d601cfeb200962644b0b3e419e0509122f7955c20efd38c0a069b
4
+ data.tar.gz: e04dead61a4db4c86376a143ca2446f2f953080324e8a66435653e4b74320bed
5
5
  SHA512:
6
- metadata.gz: ba6f9aaa123967c1759ec3c6b583fccc256b01ff8c2b67bd80df9a92eb84e0a69ce9d2193416a3d8ef8e4390a386478f50acf62ee603477ea1dc8227b65dcb49
7
- data.tar.gz: 3a95750285de2d26d95d5edbd18053ed8453205bb11333b35d2825270839c1d471f38155518659c6f5479fb1d474c95907e100893eefe89d50b62dc325ab0d37
6
+ metadata.gz: b7db93a99d64ff53c2fdf49af8029b2937017c0a445139e0bd2a058fdccb8637394cbf974a40941eacee5157c25ac767886121db167d92b9833daccebed65ac7
7
+ data.tar.gz: 6ecce7517417b9a6bc8d65d741097aee8bdbae02b22d639bf16f149900f86b06b7f1c24c3df4f90be801488b0679b1a8dbdada094fe282349a52197d89aae02c
@@ -10,8 +10,8 @@ module Multiwoven
10
10
  SyncStatus = Types::String.enum("started", "running", "complete", "incomplete")
11
11
  DestinationSyncMode = Types::String.enum("insert", "upsert")
12
12
  ConnectorType = Types::String.enum("source", "destination")
13
- ConnectorQueryType = Types::String.enum("raw_sql", "soql", "ai_ml", "unstructured")
14
- ModelQueryType = Types::String.enum("raw_sql", "dbt", "soql", "table_selector", "ai_ml", "dynamic_sql")
13
+ ConnectorQueryType = Types::String.enum("raw_sql", "soql", "ai_ml")
14
+ ModelQueryType = Types::String.enum("raw_sql", "dbt", "soql", "table_selector", "ai_ml", "dynamic_sql", "unstructured", "vector_search")
15
15
  ConnectionStatusType = Types::String.enum("succeeded", "failed")
16
16
  StreamType = Types::String.enum("static", "dynamic", "user_defined")
17
17
  StreamAction = Types::String.enum("fetch", "create", "update", "delete")
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.23.0"
5
+ VERSION = "0.23.1"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
@@ -35,7 +35,7 @@
35
35
  "data_type": {
36
36
  "description": "Type of data in the files",
37
37
  "type": "string",
38
- "title": "Data Type",
38
+ "title": "Data Format Type",
39
39
  "enum": [
40
40
  "structured",
41
41
  "unstructured"
@@ -6,8 +6,19 @@
6
6
  "$schema": "http://json-schema.org/draft-07/schema#",
7
7
  "title": "Postgresql",
8
8
  "type": "object",
9
- "required": ["host", "port", "database", "schema"],
9
+ "required": ["data_type", "host", "port", "database", "schema"],
10
10
  "properties": {
11
+ "data_type": {
12
+ "description": "Type of data in the database",
13
+ "type": "string",
14
+ "title": "Data Format Type",
15
+ "enum": [
16
+ "structured",
17
+ "vector"
18
+ ],
19
+ "default": "structured",
20
+ "order": 0
21
+ },
11
22
  "credentials": {
12
23
  "title": "",
13
24
  "type": "object",
@@ -34,35 +45,35 @@
34
45
  "order": 2
35
46
  }
36
47
  },
37
- "order": 0
48
+ "order": 1
38
49
  },
39
50
  "host": {
40
51
  "description": "The hostname or IP address of your PostgreSQL server.",
41
52
  "examples": ["127.0.0.1"],
42
53
  "type": "string",
43
54
  "title": "Host",
44
- "order": 1
55
+ "order": 2
45
56
  },
46
57
  "port": {
47
58
  "description": "The port number for your PostgreSQL server, which defaults to 5432, may vary based on your configuration. ",
48
59
  "examples": ["5432"],
49
60
  "type": "string",
50
61
  "title": "Port",
51
- "order": 2
62
+ "order": 3
52
63
  },
53
64
  "database": {
54
65
  "description": "The specific PostgreSQL database to connect to.",
55
66
  "examples": ["POSTGRESQL_DB"],
56
67
  "type": "string",
57
68
  "title": "Database",
58
- "order": 3
69
+ "order": 4
59
70
  },
60
71
  "schema": {
61
72
  "description": "The schema within the PostgreSQL database.",
62
73
  "examples": ["POSTGRESQL_SCHEMA"],
63
74
  "type": "string",
64
75
  "title": "Schema",
65
- "order": 4
76
+ "order": 5
66
77
  }
67
78
  }
68
79
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multiwoven-integrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.23.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-04-29 00:00:00.000000000 Z
11
+ date: 2025-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport