@remit/api-http-client 0.0.8 → 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.
- package/package.json +1 -1
- package/types.gen.ts +21 -0
package/package.json
CHANGED
package/types.gen.ts
CHANGED
|
@@ -2576,6 +2576,9 @@ export type FilterOperationsListFiltersResponses = {
|
|
|
2576
2576
|
* The request has succeeded.
|
|
2577
2577
|
*/
|
|
2578
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
|
+
*/
|
|
2579
2582
|
continuationToken?: String800;
|
|
2580
2583
|
items: Array<RemitImapFilterResponse>;
|
|
2581
2584
|
};
|
|
@@ -2693,6 +2696,9 @@ export type MailboxOperationsListMailboxesResponses = {
|
|
|
2693
2696
|
* The request has succeeded.
|
|
2694
2697
|
*/
|
|
2695
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
|
+
*/
|
|
2696
2702
|
continuationToken?: String800;
|
|
2697
2703
|
items: Array<RemitImapMailboxResponse>;
|
|
2698
2704
|
};
|
|
@@ -2899,6 +2905,9 @@ export type AddressOperationsSearchAddressesResponses = {
|
|
|
2899
2905
|
* The request has succeeded.
|
|
2900
2906
|
*/
|
|
2901
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
|
+
*/
|
|
2902
2911
|
continuationToken?: String800;
|
|
2903
2912
|
items: Array<RemitImapAddressResponse>;
|
|
2904
2913
|
};
|
|
@@ -2957,6 +2966,9 @@ export type ThreadOperationsListThreadsResponses = {
|
|
|
2957
2966
|
* The request has succeeded.
|
|
2958
2967
|
*/
|
|
2959
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
|
+
*/
|
|
2960
2972
|
continuationToken?: String800;
|
|
2961
2973
|
items: Array<RemitImapThreadMessageResponse>;
|
|
2962
2974
|
};
|
|
@@ -3242,6 +3254,9 @@ export type OutboxOperationsListOutboxMessagesResponses = {
|
|
|
3242
3254
|
* The request has succeeded.
|
|
3243
3255
|
*/
|
|
3244
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
|
+
*/
|
|
3245
3260
|
continuationToken?: String800;
|
|
3246
3261
|
items: Array<RemitImapOutboxMessageResponse>;
|
|
3247
3262
|
};
|
|
@@ -3416,6 +3431,9 @@ export type UnifiedThreadOperationsListAllThreadsResponses = {
|
|
|
3416
3431
|
* The request has succeeded.
|
|
3417
3432
|
*/
|
|
3418
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
|
+
*/
|
|
3419
3437
|
continuationToken?: String800;
|
|
3420
3438
|
items: Array<RemitImapThreadMessageResponse>;
|
|
3421
3439
|
};
|
|
@@ -3439,6 +3457,9 @@ export type ThreadDetailOperationsListThreadMessagesResponses = {
|
|
|
3439
3457
|
* The request has succeeded.
|
|
3440
3458
|
*/
|
|
3441
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
|
+
*/
|
|
3442
3463
|
continuationToken?: String800;
|
|
3443
3464
|
items: Array<RemitImapThreadMessageResponse>;
|
|
3444
3465
|
};
|