flexorch-sdk 0.2.1 → 0.2.2
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/index.cjs +9 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +9 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -594,7 +594,15 @@ var Connector = class _Connector {
|
|
|
594
594
|
};
|
|
595
595
|
|
|
596
596
|
// src/resources/connectors.ts
|
|
597
|
-
var VALID_TYPES = /* @__PURE__ */ new Set([
|
|
597
|
+
var VALID_TYPES = /* @__PURE__ */ new Set([
|
|
598
|
+
"s3",
|
|
599
|
+
"gcs",
|
|
600
|
+
"azure_blob",
|
|
601
|
+
"google_drive",
|
|
602
|
+
"pgvector_external",
|
|
603
|
+
"pinecone",
|
|
604
|
+
"qdrant"
|
|
605
|
+
]);
|
|
598
606
|
var ConnectorsResource = class {
|
|
599
607
|
constructor(_t) {
|
|
600
608
|
this._t = _t;
|
package/dist/index.d.cts
CHANGED
|
@@ -201,7 +201,7 @@ interface ConnectorTestResult {
|
|
|
201
201
|
latencyMs: number | null;
|
|
202
202
|
message: string;
|
|
203
203
|
}
|
|
204
|
-
type ConnectorType = "s3" | "gcs" | "azure_blob" | "google_drive";
|
|
204
|
+
type ConnectorType = "s3" | "gcs" | "azure_blob" | "google_drive" | "pgvector_external" | "pinecone" | "qdrant";
|
|
205
205
|
interface S3ConnectorConfig {
|
|
206
206
|
bucket: string;
|
|
207
207
|
region: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -201,7 +201,7 @@ interface ConnectorTestResult {
|
|
|
201
201
|
latencyMs: number | null;
|
|
202
202
|
message: string;
|
|
203
203
|
}
|
|
204
|
-
type ConnectorType = "s3" | "gcs" | "azure_blob" | "google_drive";
|
|
204
|
+
type ConnectorType = "s3" | "gcs" | "azure_blob" | "google_drive" | "pgvector_external" | "pinecone" | "qdrant";
|
|
205
205
|
interface S3ConnectorConfig {
|
|
206
206
|
bucket: string;
|
|
207
207
|
region: string;
|
package/dist/index.js
CHANGED
|
@@ -425,7 +425,15 @@ var Connector = class _Connector {
|
|
|
425
425
|
};
|
|
426
426
|
|
|
427
427
|
// src/resources/connectors.ts
|
|
428
|
-
var VALID_TYPES = /* @__PURE__ */ new Set([
|
|
428
|
+
var VALID_TYPES = /* @__PURE__ */ new Set([
|
|
429
|
+
"s3",
|
|
430
|
+
"gcs",
|
|
431
|
+
"azure_blob",
|
|
432
|
+
"google_drive",
|
|
433
|
+
"pgvector_external",
|
|
434
|
+
"pinecone",
|
|
435
|
+
"qdrant"
|
|
436
|
+
]);
|
|
429
437
|
var ConnectorsResource = class {
|
|
430
438
|
constructor(_t) {
|
|
431
439
|
this._t = _t;
|