@remit/api-http-client 0.0.8 → 0.0.10

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 +25 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-http-client",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.ts",
package/types.gen.ts CHANGED
@@ -1399,6 +1399,10 @@ export type RemitImapOrganizePreviewResponse = {
1399
1399
  * Ids of the matching messages, bounded to the same cap the apply pass uses
1400
1400
  */
1401
1401
  messageIds: Array<string>;
1402
+ /**
1403
+ * True when the semantic widen could not run because this deployment ships no vector pipeline (self-host without sqlite-vec / the embedding model). The matched set is then the literal matches only, or empty for an anchor-only predicate; literal search is unaffected. Absent on deployments where the widen ran.
1404
+ */
1405
+ semanticUnavailable?: boolean;
1402
1406
  };
1403
1407
 
1404
1408
  /**
@@ -2576,6 +2580,9 @@ export type FilterOperationsListFiltersResponses = {
2576
2580
  * The request has succeeded.
2577
2581
  */
2578
2582
  200: {
2583
+ /**
2584
+ * Opaque, server-minted cursor: absent means the first (or last) page, present means resume from here. Echo it back unchanged to fetch the next page. Every listing endpoint that accepts it rejects a token it cannot decode with 400 ValidationError rather than silently restarting from the first page (#136, #172).
2585
+ */
2579
2586
  continuationToken?: String800;
2580
2587
  items: Array<RemitImapFilterResponse>;
2581
2588
  };
@@ -2693,6 +2700,9 @@ export type MailboxOperationsListMailboxesResponses = {
2693
2700
  * The request has succeeded.
2694
2701
  */
2695
2702
  200: {
2703
+ /**
2704
+ * Opaque, server-minted cursor: absent means the first (or last) page, present means resume from here. Echo it back unchanged to fetch the next page. Every listing endpoint that accepts it rejects a token it cannot decode with 400 ValidationError rather than silently restarting from the first page (#136, #172).
2705
+ */
2696
2706
  continuationToken?: String800;
2697
2707
  items: Array<RemitImapMailboxResponse>;
2698
2708
  };
@@ -2899,6 +2909,9 @@ export type AddressOperationsSearchAddressesResponses = {
2899
2909
  * The request has succeeded.
2900
2910
  */
2901
2911
  200: {
2912
+ /**
2913
+ * Opaque, server-minted cursor: absent means the first (or last) page, present means resume from here. Echo it back unchanged to fetch the next page. Every listing endpoint that accepts it rejects a token it cannot decode with 400 ValidationError rather than silently restarting from the first page (#136, #172).
2914
+ */
2902
2915
  continuationToken?: String800;
2903
2916
  items: Array<RemitImapAddressResponse>;
2904
2917
  };
@@ -2957,6 +2970,9 @@ export type ThreadOperationsListThreadsResponses = {
2957
2970
  * The request has succeeded.
2958
2971
  */
2959
2972
  200: {
2973
+ /**
2974
+ * Opaque, server-minted cursor: absent means the first (or last) page, present means resume from here. Echo it back unchanged to fetch the next page. Every listing endpoint that accepts it rejects a token it cannot decode with 400 ValidationError rather than silently restarting from the first page (#136, #172).
2975
+ */
2960
2976
  continuationToken?: String800;
2961
2977
  items: Array<RemitImapThreadMessageResponse>;
2962
2978
  };
@@ -3242,6 +3258,9 @@ export type OutboxOperationsListOutboxMessagesResponses = {
3242
3258
  * The request has succeeded.
3243
3259
  */
3244
3260
  200: {
3261
+ /**
3262
+ * Opaque, server-minted cursor: absent means the first (or last) page, present means resume from here. Echo it back unchanged to fetch the next page. Every listing endpoint that accepts it rejects a token it cannot decode with 400 ValidationError rather than silently restarting from the first page (#136, #172).
3263
+ */
3245
3264
  continuationToken?: String800;
3246
3265
  items: Array<RemitImapOutboxMessageResponse>;
3247
3266
  };
@@ -3416,6 +3435,9 @@ export type UnifiedThreadOperationsListAllThreadsResponses = {
3416
3435
  * The request has succeeded.
3417
3436
  */
3418
3437
  200: {
3438
+ /**
3439
+ * Opaque, server-minted cursor: absent means the first (or last) page, present means resume from here. Echo it back unchanged to fetch the next page. Every listing endpoint that accepts it rejects a token it cannot decode with 400 ValidationError rather than silently restarting from the first page (#136, #172).
3440
+ */
3419
3441
  continuationToken?: String800;
3420
3442
  items: Array<RemitImapThreadMessageResponse>;
3421
3443
  };
@@ -3439,6 +3461,9 @@ export type ThreadDetailOperationsListThreadMessagesResponses = {
3439
3461
  * The request has succeeded.
3440
3462
  */
3441
3463
  200: {
3464
+ /**
3465
+ * Opaque, server-minted cursor: absent means the first (or last) page, present means resume from here. Echo it back unchanged to fetch the next page. Every listing endpoint that accepts it rejects a token it cannot decode with 400 ValidationError rather than silently restarting from the first page (#136, #172).
3466
+ */
3442
3467
  continuationToken?: String800;
3443
3468
  items: Array<RemitImapThreadMessageResponse>;
3444
3469
  };