hide-a-bed 5.2.4 → 5.2.7

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.
@@ -30,7 +30,8 @@ __export(bulk_exports, {
30
30
  BulkSaveResponseSchema: () => BulkSaveResponseSchema,
31
31
  BulkSaveRow: () => BulkSaveRow,
32
32
  BulkSaveTransaction: () => BulkSaveTransaction,
33
- BulkSaveTransactionBound: () => BulkSaveTransactionBound
33
+ BulkSaveTransactionBound: () => BulkSaveTransactionBound,
34
+ OptionalIdCouchDoc: () => OptionalIdCouchDoc
34
35
  });
35
36
  module.exports = __toCommonJS(bulk_exports);
36
37
  var import_zod = require("zod");
@@ -45,12 +46,15 @@ const BulkSaveRow = import_zod.z.object({
45
46
  reason: import_zod.z.string().nullish().describe("a full error message")
46
47
  });
47
48
  const BulkSaveResponseSchema = import_zod.z.array(BulkSaveRow);
49
+ const OptionalIdCouchDoc = import_crud.CouchDoc.extend({
50
+ _id: import_crud.CouchDoc.shape._id.optional()
51
+ });
48
52
  const BulkSave = import_zod.z.function().args(
49
53
  import_config.CouchConfig,
50
- import_zod.z.array(import_crud.CouchDoc)
54
+ import_zod.z.array(OptionalIdCouchDoc)
51
55
  ).returns(import_zod.z.promise(BulkSaveResponseSchema));
52
56
  const BulkSaveBound = import_zod.z.function().args(
53
- import_zod.z.array(import_crud.CouchDoc)
57
+ import_zod.z.array(OptionalIdCouchDoc)
54
58
  ).returns(import_zod.z.promise(BulkSaveResponseSchema));
55
59
  const BulkGet = import_zod.z.function().args(
56
60
  import_config.CouchConfig,
package/impl/query.mjs CHANGED
@@ -49,7 +49,7 @@ export const query = SimpleViewQuery.implement(async (config, view, options = {}
49
49
  // Safari not understanding 304s on POSTs (see pouchdb/pouchdb#1239)
50
50
  method = 'GET'
51
51
  if (qs.length > 0) qs += '&'
52
- else qs = '?'
52
+ else qs = ''
53
53
  qs += keysAsString
54
54
  } else {
55
55
  method = 'POST'
package/log.txt ADDED
@@ -0,0 +1,580 @@
1
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
2
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
3
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
4
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
5
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
6
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
7
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
8
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
9
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
10
+ [Fri, 11 Apr 2025 18:44:17 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
11
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
12
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
13
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
14
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
15
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
16
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
17
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
18
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
19
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
20
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
21
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
22
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
23
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
24
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
25
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
26
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
27
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
28
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
29
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
30
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
31
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
32
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
33
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
34
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
35
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
36
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
37
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
38
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
39
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
40
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
41
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
42
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
43
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
44
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
45
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
46
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
47
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
48
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
49
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
50
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
51
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
52
+ [Fri, 11 Apr 2025 18:44:18 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdb??keys=[%22query-2%22] 404
53
+ [Fri, 11 Apr 2025 18:44:53 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
54
+ [Fri, 11 Apr 2025 18:44:53 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
55
+ [Fri, 11 Apr 2025 18:44:53 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
56
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
57
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
58
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
59
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
60
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
61
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
62
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
63
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
64
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
65
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
66
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
67
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
68
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
69
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
70
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
71
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
72
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
73
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
74
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
75
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
76
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
77
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
78
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
79
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
80
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
81
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
82
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
83
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
84
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
85
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
86
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
87
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
88
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
89
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
90
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
91
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
92
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
93
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
94
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
95
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
96
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
97
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
98
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
99
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
100
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
101
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
102
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
103
+ [Fri, 11 Apr 2025 18:44:54 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
104
+ [Fri, 11 Apr 2025 18:47:14 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
105
+ [Fri, 11 Apr 2025 18:47:14 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
106
+ [Fri, 11 Apr 2025 18:47:14 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
107
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
108
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
109
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
110
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
111
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
112
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
113
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
114
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
115
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
116
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
117
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
118
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
119
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
120
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
121
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
122
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
123
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
124
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
125
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
126
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
127
+ [Fri, 11 Apr 2025 18:47:15 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
128
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
129
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
130
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
131
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
132
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
133
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
134
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
135
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
136
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
137
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
138
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
139
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
140
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
141
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
142
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
143
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
144
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
145
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
146
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
147
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
148
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
149
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
150
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
151
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
152
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
153
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
154
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/_design/test 201
155
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
156
+ [Fri, 11 Apr 2025 18:47:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/_design/test/_view/test??keys=[%22query-2%22] 200
157
+ [Fri, 11 Apr 2025 18:47:55 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
158
+ [Fri, 11 Apr 2025 18:47:55 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
159
+ [Fri, 11 Apr 2025 18:47:55 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
160
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
161
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
162
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
163
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
164
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
165
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
166
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
167
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
168
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
169
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
170
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
171
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
172
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
173
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
174
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
175
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
176
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
177
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
178
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
179
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
180
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
181
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
182
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
183
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
184
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
185
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
186
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
187
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
188
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
189
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
190
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
191
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
192
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
193
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
194
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
195
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
196
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
197
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
198
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
199
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
200
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
201
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
202
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
203
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
204
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
205
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
206
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
207
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/_design/test 201
208
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
209
+ [Fri, 11 Apr 2025 18:47:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/_design/test/_view/test??keys=[%22query-2%22] 200
210
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
211
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
212
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
213
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
214
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
215
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
216
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
217
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
218
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
219
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
220
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
221
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
222
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
223
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
224
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
225
+ [Fri, 11 Apr 2025 18:48:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
226
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
227
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
228
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
229
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
230
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
231
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
232
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
233
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
234
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
235
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
236
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
237
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
238
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
239
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
240
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
241
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
242
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
243
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
244
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
245
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
246
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
247
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
248
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
249
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
250
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
251
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
252
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
253
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
254
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
255
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
256
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
257
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
258
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
259
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
260
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/_design/test 201
261
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
262
+ [Fri, 11 Apr 2025 18:48:20 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/_design/test/_view/test??keys=[%22query-2%22] 200
263
+ [Fri, 11 Apr 2025 18:49:11 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
264
+ [Fri, 11 Apr 2025 18:49:11 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
265
+ [Fri, 11 Apr 2025 18:49:11 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
266
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
267
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
268
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
269
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
270
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
271
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
272
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
273
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
274
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
275
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
276
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
277
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
278
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
279
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
280
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
281
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
282
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
283
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
284
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
285
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
286
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
287
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
288
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
289
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
290
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
291
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
292
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
293
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
294
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
295
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
296
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
297
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
298
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
299
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
300
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
301
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
302
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
303
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
304
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
305
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
306
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
307
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
308
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
309
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
310
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
311
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
312
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
313
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/_design/test 201
314
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
315
+ [Fri, 11 Apr 2025 18:49:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/_design/test/_view/test??keys=[%22query-2%22] 200
316
+ [Fri, 11 Apr 2025 18:51:21 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
317
+ [Fri, 11 Apr 2025 18:51:21 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
318
+ [Fri, 11 Apr 2025 18:51:21 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
319
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
320
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
321
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
322
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
323
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
324
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
325
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
326
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
327
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
328
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
329
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
330
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
331
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
332
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
333
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
334
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
335
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
336
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
337
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
338
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
339
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
340
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
341
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
342
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
343
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
344
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
345
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
346
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
347
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
348
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
349
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
350
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
351
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
352
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
353
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
354
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
355
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
356
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
357
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
358
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
359
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
360
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
361
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
362
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
363
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
364
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
365
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
366
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/_design/test 201
367
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
368
+ [Fri, 11 Apr 2025 18:51:22 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/_design/test/_view/test??keys=[%22query-2%22] 200
369
+ [Fri, 11 Apr 2025 18:51:37 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
370
+ [Fri, 11 Apr 2025 18:51:37 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
371
+ [Fri, 11 Apr 2025 18:51:37 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
372
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
373
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
374
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
375
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
376
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
377
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
378
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
379
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
380
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
381
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
382
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
383
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
384
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
385
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
386
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
387
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
388
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
389
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
390
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
391
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
392
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
393
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
394
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
395
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
396
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
397
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
398
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
399
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
400
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
401
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
402
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
403
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
404
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
405
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
406
+ [Fri, 11 Apr 2025 18:51:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
407
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
408
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
409
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
410
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
411
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
412
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
413
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
414
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
415
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
416
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
417
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
418
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
419
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/_design/test 201
420
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
421
+ [Fri, 11 Apr 2025 18:51:39 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/_design/test/_view/test??keys=[%22query-2%22] 200
422
+ [Fri, 11 Apr 2025 18:51:45 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
423
+ [Fri, 11 Apr 2025 18:51:45 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
424
+ [Fri, 11 Apr 2025 18:51:45 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
425
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
426
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
427
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
428
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
429
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
430
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
431
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
432
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
433
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
434
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
435
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
436
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
437
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
438
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
439
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
440
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
441
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
442
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
443
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
444
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
445
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
446
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
447
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
448
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
449
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
450
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
451
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
452
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
453
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
454
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
455
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
456
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
457
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
458
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
459
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
460
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
461
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
462
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
463
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
464
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
465
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
466
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
467
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
468
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
469
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
470
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
471
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
472
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/_design/test 201
473
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
474
+ [Fri, 11 Apr 2025 18:51:46 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/_design/test/_view/test??keys=[%22query-2%22] 200
475
+ [Fri, 11 Apr 2025 18:53:55 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
476
+ [Fri, 11 Apr 2025 18:53:55 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
477
+ [Fri, 11 Apr 2025 18:53:55 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
478
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
479
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
480
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
481
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
482
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
483
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
484
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
485
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
486
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
487
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
488
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
489
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
490
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
491
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
492
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
493
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
494
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
495
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
496
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
497
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
498
+ [Fri, 11 Apr 2025 18:53:56 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
499
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
500
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
501
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
502
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
503
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
504
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
505
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
506
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
507
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
508
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
509
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
510
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
511
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
512
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
513
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
514
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
515
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
516
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
517
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
518
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
519
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
520
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
521
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
522
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
523
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
524
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
525
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/_design/test 201
526
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
527
+ [Fri, 11 Apr 2025 18:53:57 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/_design/test/_view/test?keys=[%22query-2%22] 200
528
+ [Fri, 11 Apr 2025 18:54:27 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
529
+ [Fri, 11 Apr 2025 18:54:27 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
530
+ [Fri, 11 Apr 2025 18:54:27 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
531
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
532
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
533
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
534
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
535
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
536
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
537
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
538
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
539
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
540
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
541
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
542
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
543
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
544
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
545
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
546
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
547
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
548
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
549
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
550
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
551
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
552
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
553
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
554
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
555
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
556
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
557
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
558
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
559
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
560
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
561
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
562
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
563
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
564
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
565
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
566
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
567
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
568
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
569
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
570
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
571
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
572
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
573
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
574
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
575
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
576
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
577
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
578
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/_design/test 201
579
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
580
+ [Fri, 11 Apr 2025 18:54:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/_design/test/_view/test?keys=[%22query-2%22] 200
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hide-a-bed",
3
- "version": "5.2.4",
3
+ "version": "5.2.7",
4
4
  "description": "An abstraction over couchdb calls that includes easy mock/stubs with pouchdb",
5
5
  "module": "index.mjs",
6
6
  "main": "cjs/index.cjs",
package/schema/bind.d.mts CHANGED
@@ -64,17 +64,17 @@ export const BindBase: z.ZodObject<{
64
64
  }>, "many">;
65
65
  }, z.ZodTypeAny, "passthrough">>>>;
66
66
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
67
- _id: z.ZodString;
68
67
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
69
68
  _deleted: z.ZodOptional<z.ZodBoolean>;
69
+ _id: z.ZodOptional<z.ZodString>;
70
70
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
71
- _id: z.ZodString;
72
71
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
73
72
  _deleted: z.ZodOptional<z.ZodBoolean>;
73
+ _id: z.ZodOptional<z.ZodString>;
74
74
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
75
- _id: z.ZodString;
76
75
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
77
76
  _deleted: z.ZodOptional<z.ZodBoolean>;
77
+ _id: z.ZodOptional<z.ZodString>;
78
78
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
79
79
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
80
80
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -611,9 +611,9 @@ export const BindBase: z.ZodObject<{
611
611
  }>, "many">;
612
612
  }, z.ZodTypeAny, "passthrough">>;
613
613
  bulkSave: (args_0: z.objectInputType<{
614
- _id: z.ZodString;
615
614
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
616
615
  _deleted: z.ZodOptional<z.ZodBoolean>;
616
+ _id: z.ZodOptional<z.ZodString>;
617
617
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
618
618
  ok?: boolean | null | undefined;
619
619
  id?: string | null | undefined;
@@ -790,9 +790,9 @@ export const BindBase: z.ZodObject<{
790
790
  }>, "many">;
791
791
  }, z.ZodTypeAny, "passthrough">>;
792
792
  bulkSave: (args_0: z.objectOutputType<{
793
- _id: z.ZodString;
794
793
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
795
794
  _deleted: z.ZodOptional<z.ZodBoolean>;
795
+ _id: z.ZodOptional<z.ZodString>;
796
796
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
797
797
  ok?: boolean | null | undefined;
798
798
  id?: string | null | undefined;
@@ -1134,17 +1134,17 @@ export const BindReturns: z.ZodObject<{
1134
1134
  }>, "many">;
1135
1135
  }, z.ZodTypeAny, "passthrough">>>>;
1136
1136
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
1137
- _id: z.ZodString;
1138
1137
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1139
1138
  _deleted: z.ZodOptional<z.ZodBoolean>;
1139
+ _id: z.ZodOptional<z.ZodString>;
1140
1140
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1141
- _id: z.ZodString;
1142
1141
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1143
1142
  _deleted: z.ZodOptional<z.ZodBoolean>;
1143
+ _id: z.ZodOptional<z.ZodString>;
1144
1144
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1145
- _id: z.ZodString;
1146
1145
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1147
1146
  _deleted: z.ZodOptional<z.ZodBoolean>;
1147
+ _id: z.ZodOptional<z.ZodString>;
1148
1148
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
1149
1149
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1150
1150
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1544,17 +1544,17 @@ export const BindReturns: z.ZodObject<{
1544
1544
  }>, "many">;
1545
1545
  }, z.ZodTypeAny, "passthrough">>>>;
1546
1546
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
1547
- _id: z.ZodString;
1548
1547
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1549
1548
  _deleted: z.ZodOptional<z.ZodBoolean>;
1549
+ _id: z.ZodOptional<z.ZodString>;
1550
1550
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1551
- _id: z.ZodString;
1552
1551
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1553
1552
  _deleted: z.ZodOptional<z.ZodBoolean>;
1553
+ _id: z.ZodOptional<z.ZodString>;
1554
1554
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1555
- _id: z.ZodString;
1556
1555
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1557
1556
  _deleted: z.ZodOptional<z.ZodBoolean>;
1557
+ _id: z.ZodOptional<z.ZodString>;
1558
1558
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
1559
1559
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1560
1560
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2091,9 +2091,9 @@ export const BindReturns: z.ZodObject<{
2091
2091
  }>, "many">;
2092
2092
  }, z.ZodTypeAny, "passthrough">>;
2093
2093
  bulkSave: (args_0: z.objectInputType<{
2094
- _id: z.ZodString;
2095
2094
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2096
2095
  _deleted: z.ZodOptional<z.ZodBoolean>;
2096
+ _id: z.ZodOptional<z.ZodString>;
2097
2097
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2098
2098
  ok?: boolean | null | undefined;
2099
2099
  id?: string | null | undefined;
@@ -2270,9 +2270,9 @@ export const BindReturns: z.ZodObject<{
2270
2270
  }>, "many">;
2271
2271
  }, z.ZodTypeAny, "passthrough">>;
2272
2272
  bulkSave: (args_0: z.objectOutputType<{
2273
- _id: z.ZodString;
2274
2273
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2275
2274
  _deleted: z.ZodOptional<z.ZodBoolean>;
2275
+ _id: z.ZodOptional<z.ZodString>;
2276
2276
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2277
2277
  ok?: boolean | null | undefined;
2278
2278
  id?: string | null | undefined;
@@ -2476,9 +2476,9 @@ export const BindReturns: z.ZodObject<{
2476
2476
  }>, "many">;
2477
2477
  }, z.ZodTypeAny, "passthrough">>;
2478
2478
  bulkSave: (args_0: z.objectInputType<{
2479
- _id: z.ZodString;
2480
2479
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2481
2480
  _deleted: z.ZodOptional<z.ZodBoolean>;
2481
+ _id: z.ZodOptional<z.ZodString>;
2482
2482
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2483
2483
  ok?: boolean | null | undefined;
2484
2484
  id?: string | null | undefined;
@@ -2655,9 +2655,9 @@ export const BindReturns: z.ZodObject<{
2655
2655
  }>, "many">;
2656
2656
  }, z.ZodTypeAny, "passthrough">>;
2657
2657
  bulkSave: (args_0: z.objectInputType<{
2658
- _id: z.ZodString;
2659
2658
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2660
2659
  _deleted: z.ZodOptional<z.ZodBoolean>;
2660
+ _id: z.ZodOptional<z.ZodString>;
2661
2661
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2662
2662
  ok?: boolean | null | undefined;
2663
2663
  id?: string | null | undefined;
@@ -2860,9 +2860,9 @@ export const BindReturns: z.ZodObject<{
2860
2860
  }>, "many">;
2861
2861
  }, z.ZodTypeAny, "passthrough">>;
2862
2862
  bulkSave: (args_0: z.objectOutputType<{
2863
- _id: z.ZodString;
2864
2863
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2865
2864
  _deleted: z.ZodOptional<z.ZodBoolean>;
2865
+ _id: z.ZodOptional<z.ZodString>;
2866
2866
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2867
2867
  ok?: boolean | null | undefined;
2868
2868
  id?: string | null | undefined;
@@ -3039,9 +3039,9 @@ export const BindReturns: z.ZodObject<{
3039
3039
  }>, "many">;
3040
3040
  }, z.ZodTypeAny, "passthrough">>;
3041
3041
  bulkSave: (args_0: z.objectOutputType<{
3042
- _id: z.ZodString;
3043
3042
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3044
3043
  _deleted: z.ZodOptional<z.ZodBoolean>;
3044
+ _id: z.ZodOptional<z.ZodString>;
3045
3045
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
3046
3046
  ok?: boolean | null | undefined;
3047
3047
  id?: string | null | undefined;
@@ -3459,17 +3459,17 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
3459
3459
  }>, "many">;
3460
3460
  }, z.ZodTypeAny, "passthrough">>>>;
3461
3461
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
3462
- _id: z.ZodString;
3463
3462
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3464
3463
  _deleted: z.ZodOptional<z.ZodBoolean>;
3464
+ _id: z.ZodOptional<z.ZodString>;
3465
3465
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3466
- _id: z.ZodString;
3467
3466
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3468
3467
  _deleted: z.ZodOptional<z.ZodBoolean>;
3468
+ _id: z.ZodOptional<z.ZodString>;
3469
3469
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3470
- _id: z.ZodString;
3471
3470
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3472
3471
  _deleted: z.ZodOptional<z.ZodBoolean>;
3472
+ _id: z.ZodOptional<z.ZodString>;
3473
3473
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
3474
3474
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3475
3475
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3869,17 +3869,17 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
3869
3869
  }>, "many">;
3870
3870
  }, z.ZodTypeAny, "passthrough">>>>;
3871
3871
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
3872
- _id: z.ZodString;
3873
3872
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3874
3873
  _deleted: z.ZodOptional<z.ZodBoolean>;
3874
+ _id: z.ZodOptional<z.ZodString>;
3875
3875
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3876
- _id: z.ZodString;
3877
3876
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3878
3877
  _deleted: z.ZodOptional<z.ZodBoolean>;
3878
+ _id: z.ZodOptional<z.ZodString>;
3879
3879
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3880
- _id: z.ZodString;
3881
3880
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3882
3881
  _deleted: z.ZodOptional<z.ZodBoolean>;
3882
+ _id: z.ZodOptional<z.ZodString>;
3883
3883
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
3884
3884
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3885
3885
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4416,9 +4416,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
4416
4416
  }>, "many">;
4417
4417
  }, z.ZodTypeAny, "passthrough">>;
4418
4418
  bulkSave: (args_0: z.objectInputType<{
4419
- _id: z.ZodString;
4420
4419
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
4421
4420
  _deleted: z.ZodOptional<z.ZodBoolean>;
4421
+ _id: z.ZodOptional<z.ZodString>;
4422
4422
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
4423
4423
  ok?: boolean | null | undefined;
4424
4424
  id?: string | null | undefined;
@@ -4595,9 +4595,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
4595
4595
  }>, "many">;
4596
4596
  }, z.ZodTypeAny, "passthrough">>;
4597
4597
  bulkSave: (args_0: z.objectOutputType<{
4598
- _id: z.ZodString;
4599
4598
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
4600
4599
  _deleted: z.ZodOptional<z.ZodBoolean>;
4600
+ _id: z.ZodOptional<z.ZodString>;
4601
4601
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
4602
4602
  ok?: boolean | null | undefined;
4603
4603
  id?: string | null | undefined;
@@ -4801,9 +4801,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
4801
4801
  }>, "many">;
4802
4802
  }, z.ZodTypeAny, "passthrough">>;
4803
4803
  bulkSave: (args_0: z.objectInputType<{
4804
- _id: z.ZodString;
4805
4804
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
4806
4805
  _deleted: z.ZodOptional<z.ZodBoolean>;
4806
+ _id: z.ZodOptional<z.ZodString>;
4807
4807
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
4808
4808
  ok?: boolean | null | undefined;
4809
4809
  id?: string | null | undefined;
@@ -4980,9 +4980,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
4980
4980
  }>, "many">;
4981
4981
  }, z.ZodTypeAny, "passthrough">>;
4982
4982
  bulkSave: (args_0: z.objectInputType<{
4983
- _id: z.ZodString;
4984
4983
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
4985
4984
  _deleted: z.ZodOptional<z.ZodBoolean>;
4985
+ _id: z.ZodOptional<z.ZodString>;
4986
4986
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
4987
4987
  ok?: boolean | null | undefined;
4988
4988
  id?: string | null | undefined;
@@ -5185,9 +5185,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
5185
5185
  }>, "many">;
5186
5186
  }, z.ZodTypeAny, "passthrough">>;
5187
5187
  bulkSave: (args_0: z.objectOutputType<{
5188
- _id: z.ZodString;
5189
5188
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
5190
5189
  _deleted: z.ZodOptional<z.ZodBoolean>;
5190
+ _id: z.ZodOptional<z.ZodString>;
5191
5191
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
5192
5192
  ok?: boolean | null | undefined;
5193
5193
  id?: string | null | undefined;
@@ -5364,9 +5364,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
5364
5364
  }>, "many">;
5365
5365
  }, z.ZodTypeAny, "passthrough">>;
5366
5366
  bulkSave: (args_0: z.objectOutputType<{
5367
- _id: z.ZodString;
5368
5367
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
5369
5368
  _deleted: z.ZodOptional<z.ZodBoolean>;
5369
+ _id: z.ZodOptional<z.ZodString>;
5370
5370
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
5371
5371
  ok?: boolean | null | undefined;
5372
5372
  id?: string | null | undefined;
package/schema/bulk.d.mts CHANGED
@@ -38,6 +38,19 @@ export const BulkSaveResponseSchema: z.ZodArray<z.ZodObject<{
38
38
  reason?: string | null | undefined;
39
39
  }>, "many">;
40
40
  /** @typedef { z.infer<typeof BulkSaveResponseSchema> } Response */
41
+ export const OptionalIdCouchDoc: z.ZodObject<{
42
+ _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
43
+ _deleted: z.ZodOptional<z.ZodBoolean>;
44
+ _id: z.ZodOptional<z.ZodString>;
45
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
46
+ _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
47
+ _deleted: z.ZodOptional<z.ZodBoolean>;
48
+ _id: z.ZodOptional<z.ZodString>;
49
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
50
+ _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
51
+ _deleted: z.ZodOptional<z.ZodBoolean>;
52
+ _id: z.ZodOptional<z.ZodString>;
53
+ }, z.ZodTypeAny, "passthrough">>;
41
54
  export const BulkSave: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
42
55
  throwOnGetNotFound: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
43
56
  couch: z.ZodString;
@@ -114,17 +127,17 @@ export const BulkSave: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
114
127
  }>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodAny], z.ZodUnknown>, z.ZodVoid>]>>;
115
128
  _normalizedLogger: z.ZodOptional<z.ZodAny>;
116
129
  }, z.ZodTypeAny, "passthrough">>, z.ZodArray<z.ZodObject<{
117
- _id: z.ZodString;
118
130
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
119
131
  _deleted: z.ZodOptional<z.ZodBoolean>;
132
+ _id: z.ZodOptional<z.ZodString>;
120
133
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
121
- _id: z.ZodString;
122
134
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
123
135
  _deleted: z.ZodOptional<z.ZodBoolean>;
136
+ _id: z.ZodOptional<z.ZodString>;
124
137
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
125
- _id: z.ZodString;
126
138
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
127
139
  _deleted: z.ZodOptional<z.ZodBoolean>;
140
+ _id: z.ZodOptional<z.ZodString>;
128
141
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
129
142
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
130
143
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -146,17 +159,17 @@ export const BulkSave: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
146
159
  }>, "many">>>;
147
160
  /** @typedef { z.infer<typeof BulkSave> } BulkSaveSchema */
148
161
  export const BulkSaveBound: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
149
- _id: z.ZodString;
150
162
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
151
163
  _deleted: z.ZodOptional<z.ZodBoolean>;
164
+ _id: z.ZodOptional<z.ZodString>;
152
165
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
153
- _id: z.ZodString;
154
166
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
155
167
  _deleted: z.ZodOptional<z.ZodBoolean>;
168
+ _id: z.ZodOptional<z.ZodString>;
156
169
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
157
- _id: z.ZodString;
158
170
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
159
171
  _deleted: z.ZodOptional<z.ZodBoolean>;
172
+ _id: z.ZodOptional<z.ZodString>;
160
173
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
161
174
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
162
175
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1 +1 @@
1
- {"version":3,"file":"bulk.d.mts","sourceRoot":"","sources":["bulk.mjs"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;;;;;GAME;AACF,iEAAiE;AAEjE;;;;;;;;;;;;;;;;;;YAA0D;AAC1D,mEAAmE;AAEnE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;AAC5C,2DAA2D;AAE3D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAE4C;AAC5C,qEAAqE;AAErE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAG6C;AAC7C,yDAAyD;AAEzD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAE6C;AAC7C,mEAAmE;AAEnE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;AAC5C,+DAA+D;AAE/D;;;;;;;;;;;;;;;;;;cAE4C;AAC5C,yEAAyE;AAEzE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAGE;AACF,6FAA6F;AAE7F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAG+C;AAC/C,6EAA6E;AAE7E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAE+C;AAC/C,uFAAuF;AAEvF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAI4C;AAC5C,iFAAiF;AAEjF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;gCAjE7B,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC;uBAG3B,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC;6BAMtC,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC;kCAKxB,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC;4BAM7B,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC;iCAKvB,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC;+BAM5B,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC;oCAK1B,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC;8CAM/B,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC;sCAMzC,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC;2CAKjC,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC;wCAOtC,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC;6CAMnC,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC;kBA9ErC,KAAK"}
1
+ {"version":3,"file":"bulk.d.mts","sourceRoot":"","sources":["bulk.mjs"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;;;;;GAME;AACF,iEAAiE;AAEjE;;;;;;;;;;;;;;;;;;YAA0D;AAC1D,mEAAmE;AAEnE;;;;;;;;;;;;iCAEE;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;AAC5C,2DAA2D;AAE3D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAE4C;AAC5C,qEAAqE;AAErE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAG6C;AAC7C,yDAAyD;AAEzD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAE6C;AAC7C,mEAAmE;AAEnE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;AAC5C,+DAA+D;AAE/D;;;;;;;;;;;;;;;;;;cAE4C;AAC5C,yEAAyE;AAEzE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAGE;AACF,6FAA6F;AAE7F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAG+C;AAC/C,6EAA6E;AAE7E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAE+C;AAC/C,uFAAuF;AAEvF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAI4C;AAC5C,iFAAiF;AAEjF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;gCArE7B,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC;uBAG3B,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC;6BAUtC,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC;kCAKxB,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC;4BAM7B,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC;iCAKvB,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC;+BAM5B,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC;oCAK1B,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC;8CAM/B,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC;sCAMzC,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC;2CAKjC,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC;wCAOtC,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC;6CAMnC,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC;kBAlFrC,KAAK"}
package/schema/bulk.mjs CHANGED
@@ -15,14 +15,18 @@ export const BulkSaveRow = z.object({
15
15
  export const BulkSaveResponseSchema = z.array(BulkSaveRow)
16
16
  /** @typedef { z.infer<typeof BulkSaveResponseSchema> } Response */
17
17
 
18
+ export const OptionalIdCouchDoc = CouchDoc.extend({
19
+ _id: CouchDoc.shape._id.optional()
20
+ })
21
+
18
22
  export const BulkSave = z.function().args(
19
23
  CouchConfig,
20
- z.array(CouchDoc)
24
+ z.array(OptionalIdCouchDoc)
21
25
  ).returns(z.promise(BulkSaveResponseSchema))
22
26
  /** @typedef { z.infer<typeof BulkSave> } BulkSaveSchema */
23
27
 
24
28
  export const BulkSaveBound = z.function().args(
25
- z.array(CouchDoc)
29
+ z.array(OptionalIdCouchDoc)
26
30
  ).returns(z.promise(BulkSaveResponseSchema))
27
31
  /** @typedef { z.infer<typeof BulkSaveBound> } BulkSaveBoundSchema */
28
32