@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.
- package/package.json +1 -1
- package/types.gen.ts +2 -6
package/package.json
CHANGED
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
|
|
1178
|
+
* Number of items accepted for processing
|
|
1179
1179
|
*/
|
|
1180
1180
|
successCount: number;
|
|
1181
1181
|
/**
|
|
1182
|
-
* Number of items
|
|
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
|
/**
|