@remit/api-http-client 0.0.7 → 0.0.8

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 +2 -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.8",
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
  /**