@remit/api-openapi-types 0.0.1 → 0.0.2
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.d.ts +4 -4
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -184,6 +184,7 @@ current enum emitter anyway, so the wire contract uses the bare form.
|
|
|
184
184
|
export type UUID = string;
|
|
185
185
|
export type String800 = string;
|
|
186
186
|
export type String512 = string;
|
|
187
|
+
export type String32 = string;
|
|
187
188
|
export type String256 = string;
|
|
188
189
|
/**
|
|
189
190
|
* A semantic version string (e.g. "1.10.0"). See https://semver.org.
|
|
@@ -202,7 +203,6 @@ a compile-time error rather than a value that silently sorts incorrectly.
|
|
|
202
203
|
export type String200 = string;
|
|
203
204
|
export type String140 = string;
|
|
204
205
|
export type String64 = string;
|
|
205
|
-
export type String32 = string;
|
|
206
206
|
export interface CognitoAuthorizer {
|
|
207
207
|
/**
|
|
208
208
|
* API key authentication
|
|
@@ -858,9 +858,9 @@ a compile-time error rather than a value that silently sorts incorrectly.
|
|
|
858
858
|
*/
|
|
859
859
|
uidNext: number;
|
|
860
860
|
/**
|
|
861
|
-
* Highest modification sequence number (CONDSTORE).
|
|
861
|
+
* Highest modification sequence number (CONDSTORE, RFC 7162) as decimal digits. A modseq is an unsigned 64-bit integer that exceeds both a signed int64 column and JS Number precision, so it is stored as a string and parsed to BigInt only at the point of comparison.
|
|
862
862
|
*/
|
|
863
|
-
highestModseq:
|
|
863
|
+
highestModseq: String32;
|
|
864
864
|
/**
|
|
865
865
|
* Total message count in mailbox
|
|
866
866
|
*/
|
|
@@ -5193,10 +5193,10 @@ export type MessageFlagPushState = Components.Schemas.MessageFlagPushState;
|
|
|
5193
5193
|
export type UUID = Components.Schemas.UUID;
|
|
5194
5194
|
export type String800 = Components.Schemas.String800;
|
|
5195
5195
|
export type String512 = Components.Schemas.String512;
|
|
5196
|
+
export type String32 = Components.Schemas.String32;
|
|
5196
5197
|
export type String256 = Components.Schemas.String256;
|
|
5197
5198
|
export type SemanticVersion = Components.Schemas.SemanticVersion;
|
|
5198
5199
|
export type String2048 = Components.Schemas.String2048;
|
|
5199
5200
|
export type String200 = Components.Schemas.String200;
|
|
5200
5201
|
export type String140 = Components.Schemas.String140;
|
|
5201
5202
|
export type String64 = Components.Schemas.String64;
|
|
5202
|
-
export type String32 = Components.Schemas.String32;
|