@remit/api-http-client 0.0.40 → 0.0.41

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.gen.ts +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-http-client",
3
- "version": "0.0.40",
3
+ "version": "0.0.41",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.ts",
package/types.gen.ts CHANGED
@@ -937,6 +937,10 @@ export type RemitImapConfigDescriptionResponse = {
937
937
  * Absent unless a configuration import is still waiting on folders IMAP has not produced yet (#1021). Nothing polls a separate route for it.
938
938
  */
939
939
  pendingImport?: RemitImapPendingConfigImport;
940
+ /**
941
+ * Whether this instance stores a vector for every message — SEARCH_EMBEDDING_PROVIDER is anything but `off`. False is a setting an operator turns on (`remit semantic on`), not a failure: the Organize semantic widen and semantic (anchor) filters read stored vectors and have none, so they render an off state rather than an empty result. It rides the config read because it is a property of the deployment, not of a query (#1068).
942
+ */
943
+ semanticSearchEnabled: boolean;
940
944
  };
941
945
 
942
946
  /**
@@ -3523,6 +3527,10 @@ export type RemitImapConfigDescriptionResponseWritable = {
3523
3527
  * Absent unless a configuration import is still waiting on folders IMAP has not produced yet (#1021). Nothing polls a separate route for it.
3524
3528
  */
3525
3529
  pendingImport?: RemitImapPendingConfigImport;
3530
+ /**
3531
+ * Whether this instance stores a vector for every message — SEARCH_EMBEDDING_PROVIDER is anything but `off`. False is a setting an operator turns on (`remit semantic on`), not a failure: the Organize semantic widen and semantic (anchor) filters read stored vectors and have none, so they render an off state rather than an empty result. It rides the config read because it is a property of the deployment, not of a query (#1068).
3532
+ */
3533
+ semanticSearchEnabled: boolean;
3526
3534
  };
3527
3535
 
3528
3536
  /**