File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -778,7 +778,7 @@ declare namespace nano {
778
778
instance_start_time : string ;
779
779
780
780
/** The number of purge operations on the database. */
781
- purge_seq : number ;
781
+ purge_seq : number | string ;
782
782
783
783
sizes : {
784
784
/** The size of live data inside the database, in bytes. */
@@ -792,7 +792,7 @@ declare namespace nano {
792
792
} ;
793
793
794
794
/** The current number of updates to the database. */
795
- update_seq : number ;
795
+ update_seq : number | string ;
796
796
}
797
797
798
798
/** OK response
@@ -1347,7 +1347,7 @@ declare namespace nano {
1347
1347
total_rows : number ;
1348
1348
1349
1349
/** Current update sequence for the database. */
1350
- update_seq ?: number ;
1350
+ update_seq ?: number | string ;
1351
1351
}
1352
1352
1353
1353
/** Fetch with POST _all_docs parameters.
@@ -1381,7 +1381,7 @@ declare namespace nano {
1381
1381
offset : number ;
1382
1382
rows : Array < DocumentResponseRow < D > | DocumentLookupFailure > ;
1383
1383
total_rows : number ;
1384
- update_seq ?: number ;
1384
+ update_seq ?: number | string ;
1385
1385
}
1386
1386
1387
1387
/** Fetch revisions response
@@ -1390,7 +1390,7 @@ declare namespace nano {
1390
1390
offset : number ;
1391
1391
rows : Array < DocumentResponseRow < D > | DocumentLookupFailure > ;
1392
1392
total_rows : number ;
1393
- update_seq ?: number ;
1393
+ update_seq ?: number | string ;
1394
1394
}
1395
1395
1396
1396
/** Search response
You can’t perform that action at this time.
0 commit comments