@remit/api-openapi-types 0.0.35 → 0.0.37

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.d.ts +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-openapi-types",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "type": "module",
5
5
  "main": "types.d.ts",
6
6
  "types": "types.d.ts",
package/types.d.ts CHANGED
@@ -2077,6 +2077,10 @@ standing to persist.
2077
2077
  * Number of mailboxes whose initial message sync has completed
2078
2078
  */
2079
2079
  mailboxCountSynced?: number;
2080
+ /**
2081
+ * When the account's most recent sync round started, stamped once per round by the worker. A client that triggered a sync compares this against the reading it took before triggering, so it confirms only on a round of its own rather than one already in flight.
2082
+ */
2083
+ lastSyncAt?: number;
2080
2084
  /**
2081
2085
  * Per-mailbox sync progress
2082
2086
  */
@@ -4875,6 +4879,7 @@ declare namespace Paths {
4875
4879
  export type RequestBody = Components.Schemas.CreateFilterInput;
4876
4880
  namespace Responses {
4877
4881
  export type $200 = void;
4882
+ export type $400 = void;
4878
4883
  }
4879
4884
  }
4880
4885
  namespace GetFilter {
@@ -4958,6 +4963,7 @@ declare namespace Paths {
4958
4963
  export type RequestBody = Components.Schemas.OrganizeInput;
4959
4964
  namespace Responses {
4960
4965
  export type $202 = void;
4966
+ export type $400 = void;
4961
4967
  }
4962
4968
  }
4963
4969
  namespace PreviewOrganize {
@@ -4967,6 +4973,7 @@ declare namespace Paths {
4967
4973
  export type RequestBody = Components.Schemas.OrganizeInput;
4968
4974
  namespace Responses {
4969
4975
  export type $200 = void;
4976
+ export type $400 = void;
4970
4977
  }
4971
4978
  }
4972
4979
  namespace GetOrganizeJob {