@rcrsr/rill-ext-pinecone 0.8.3 → 0.8.5

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/types.d.ts DELETED
@@ -1,63 +0,0 @@
1
- /**
2
- * Type definitions for Pinecone extension.
3
- * Defines configuration for connecting to Pinecone vector database.
4
- */
5
- /**
6
- * Configuration options for Pinecone extension.
7
- *
8
- * Defines connection parameters for Pinecone client including
9
- * API key, index name, namespace, and timeout settings.
10
- *
11
- * @example
12
- * ```typescript
13
- * // Basic configuration with required fields
14
- * const basicConfig: PineconeConfig = {
15
- * apiKey: 'your-pinecone-api-key',
16
- * index: 'my-index',
17
- * };
18
- *
19
- * // Full configuration with optional fields
20
- * const fullConfig: PineconeConfig = {
21
- * apiKey: 'your-pinecone-api-key',
22
- * index: 'my-index',
23
- * namespace: 'production',
24
- * timeout: 60000,
25
- * };
26
- * ```
27
- */
28
- export interface PineconeConfig {
29
- /**
30
- * API key for Pinecone authentication.
31
- *
32
- * Required for all Pinecone operations.
33
- * Obtain from Pinecone console.
34
- */
35
- readonly apiKey: string;
36
- /**
37
- * Index name for vector operations.
38
- *
39
- * Must match an existing index in the Pinecone project.
40
- */
41
- readonly index: string;
42
- /**
43
- * Namespace for partitioning vectors within an index.
44
- *
45
- * Namespaces allow logical separation of vectors within a single index.
46
- * Default: '' (default namespace)
47
- */
48
- readonly namespace?: string | undefined;
49
- /**
50
- * Request timeout in milliseconds.
51
- *
52
- * Must be a positive integer.
53
- * Default: SDK default (30000ms)
54
- */
55
- readonly timeout?: number | undefined;
56
- }
57
- /**
58
- * Legacy type alias for PineconeConfig.
59
- *
60
- * @deprecated Use PineconeConfig instead.
61
- */
62
- export type PineconeExtensionConfig = PineconeConfig;
63
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;;OAKG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IAEvB;;;;;OAKG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAExC;;;;;OAKG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACvC;AAMD;;;;GAIG;AACH,MAAM,MAAM,uBAAuB,GAAG,cAAc,CAAC"}
package/dist/types.js DELETED
@@ -1,6 +0,0 @@
1
- /**
2
- * Type definitions for Pinecone extension.
3
- * Defines configuration for connecting to Pinecone vector database.
4
- */
5
- export {};
6
- //# sourceMappingURL=types.js.map
package/dist/types.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;;GAGG"}