@remit/api-http-client 0.0.7 → 0.0.9

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 +23 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-http-client",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.ts",
package/types.gen.ts CHANGED
@@ -1175,17 +1175,13 @@ export type RemitImapMessageAuthenticity = {
1175
1175
  */
1176
1176
  export type RemitImapMessageBulkOperationResult = {
1177
1177
  /**
1178
- * Number of items successfully processed
1178
+ * Number of items accepted for processing
1179
1179
  */
1180
1180
  successCount: number;
1181
1181
  /**
1182
- * Number of items that failed
1182
+ * Number of items rejected before processing
1183
1183
  */
1184
1184
  failureCount: number;
1185
- /**
1186
- * IDs of failed items
1187
- */
1188
- failedIds?: Array<Uuid>;
1189
1185
  };
1190
1186
 
1191
1187
  /**
@@ -2580,6 +2576,9 @@ export type FilterOperationsListFiltersResponses = {
2580
2576
  * The request has succeeded.
2581
2577
  */
2582
2578
  200: {
2579
+ /**
2580
+ * 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).
2581
+ */
2583
2582
  continuationToken?: String800;
2584
2583
  items: Array<RemitImapFilterResponse>;
2585
2584
  };
@@ -2697,6 +2696,9 @@ export type MailboxOperationsListMailboxesResponses = {
2697
2696
  * The request has succeeded.
2698
2697
  */
2699
2698
  200: {
2699
+ /**
2700
+ * 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).
2701
+ */
2700
2702
  continuationToken?: String800;
2701
2703
  items: Array<RemitImapMailboxResponse>;
2702
2704
  };
@@ -2903,6 +2905,9 @@ export type AddressOperationsSearchAddressesResponses = {
2903
2905
  * The request has succeeded.
2904
2906
  */
2905
2907
  200: {
2908
+ /**
2909
+ * 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).
2910
+ */
2906
2911
  continuationToken?: String800;
2907
2912
  items: Array<RemitImapAddressResponse>;
2908
2913
  };
@@ -2961,6 +2966,9 @@ export type ThreadOperationsListThreadsResponses = {
2961
2966
  * The request has succeeded.
2962
2967
  */
2963
2968
  200: {
2969
+ /**
2970
+ * 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).
2971
+ */
2964
2972
  continuationToken?: String800;
2965
2973
  items: Array<RemitImapThreadMessageResponse>;
2966
2974
  };
@@ -3246,6 +3254,9 @@ export type OutboxOperationsListOutboxMessagesResponses = {
3246
3254
  * The request has succeeded.
3247
3255
  */
3248
3256
  200: {
3257
+ /**
3258
+ * 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).
3259
+ */
3249
3260
  continuationToken?: String800;
3250
3261
  items: Array<RemitImapOutboxMessageResponse>;
3251
3262
  };
@@ -3420,6 +3431,9 @@ export type UnifiedThreadOperationsListAllThreadsResponses = {
3420
3431
  * The request has succeeded.
3421
3432
  */
3422
3433
  200: {
3434
+ /**
3435
+ * 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).
3436
+ */
3423
3437
  continuationToken?: String800;
3424
3438
  items: Array<RemitImapThreadMessageResponse>;
3425
3439
  };
@@ -3443,6 +3457,9 @@ export type ThreadDetailOperationsListThreadMessagesResponses = {
3443
3457
  * The request has succeeded.
3444
3458
  */
3445
3459
  200: {
3460
+ /**
3461
+ * 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).
3462
+ */
3446
3463
  continuationToken?: String800;
3447
3464
  items: Array<RemitImapThreadMessageResponse>;
3448
3465
  };