@memori.ai/memori-api-client 6.7.2 → 6.7.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
 
2
2
 
3
+ ## [6.7.3](https://github.com/memori-ai/memori-api-client/compare/v6.7.2...v6.7.3) (2025-07-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * add MemoriFilters type and related API functions for filtered Memori retrieval ([f5061da](https://github.com/memori-ai/memori-api-client/commit/f5061daad4ae2f3a1162f869124a00fffd6c05e4))
9
+
3
10
  ## [6.7.2](https://github.com/memori-ai/memori-api-client/compare/v6.7.1...v6.7.2) (2025-07-08)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -334,6 +334,15 @@ export declare type Tenant = {
334
334
  enableDeepThought?: boolean;
335
335
  enableVirtualSpaces?: boolean;
336
336
  billingDelegation?: boolean;
337
+ smtpConfig?: {
338
+ server: string;
339
+ user: string;
340
+ password: string;
341
+ port: number;
342
+ socketSecurity: string;
343
+ senderEmail: string;
344
+ senderName: string;
345
+ };
337
346
  creationTimestamp?: string;
338
347
  lastChangeTimestamp?: string;
339
348
  perplexityAPIKey?: string;
package/esm/types.d.ts CHANGED
@@ -334,6 +334,15 @@ export declare type Tenant = {
334
334
  enableDeepThought?: boolean;
335
335
  enableVirtualSpaces?: boolean;
336
336
  billingDelegation?: boolean;
337
+ smtpConfig?: {
338
+ server: string;
339
+ user: string;
340
+ password: string;
341
+ port: number;
342
+ socketSecurity: string;
343
+ senderEmail: string;
344
+ senderName: string;
345
+ };
337
346
  creationTimestamp?: string;
338
347
  lastChangeTimestamp?: string;
339
348
  perplexityAPIKey?: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.7.2",
2
+ "version": "6.7.3",
3
3
  "name": "@memori.ai/memori-api-client",
4
4
  "description": "React library to integrate a Memori in your app or website",
5
5
  "license": "Apache-2.0",
package/src/types.ts CHANGED
@@ -564,6 +564,19 @@ export declare type Tenant = {
564
564
  enableDeepThought?: boolean;
565
565
  enableVirtualSpaces?: boolean;
566
566
  billingDelegation?: boolean;
567
+ /**
568
+ * @type {object=}
569
+ * SMTP configuration for the Tenant.
570
+ */
571
+ smtpConfig?: {
572
+ server: string;
573
+ user: string;
574
+ password: string;
575
+ port: number;
576
+ socketSecurity: string;
577
+ senderEmail: string;
578
+ senderName: string;
579
+ };
567
580
  creationTimestamp?: string;
568
581
  lastChangeTimestamp?: string;
569
582
  perplexityAPIKey?: string;